-
Notifications
You must be signed in to change notification settings - Fork 1
/
story_graph.dot
58 lines (58 loc) · 2.68 KB
/
story_graph.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
digraph {
0 [class="start active", fillcolor=green, fontsize=12, label=START, style=filled];
"-1" [class=end, fillcolor=red, fontsize=12, label=END, style=filled];
1 [class="", fontsize=12, label=utter_goodbye];
2 [class=active, fontsize=12, label=utter_greet];
3 [class="", fontsize=12, label=action_weather];
4 [class="", fontsize=12, label=utter_acknowledge_reply];
5 [class="", fontsize=12, label=utter_ask_location];
"-6" [class=ellipsis, label="..."];
7 [class="", fontsize=12, label=utter_ask_location];
10 [class="", fontsize=12, label=action_weather];
"-10" [class=ellipsis, label="..."];
"-11" [class=ellipsis, label="..."];
"-12" [class=ellipsis, label="..."];
21 [class=active, fontsize=12, label=utter_greet_reply];
23 [class="intent dashed active", label=" ? ", shape=rect];
24 [class=intent, fillcolor=lightblue, label=goodbye, shape=rect, style=filled];
25 [class="intent active", fillcolor=lightblue, label=hi, shape=rect, style=filled];
26 [class=intent, fillcolor=lightblue, label="informlocation Lahore", shape=rect, style=filled];
27 [class=intent, fillcolor=lightblue, label=acknowledge, shape=rect, style=filled];
28 [class=intent, fillcolor=lightblue, label=inform, shape=rect, style=filled];
29 [class=intent, fillcolor=lightblue, label=inform, shape=rect, style=filled];
30 [class=intent, fillcolor=lightblue, label="informlocation London", shape=rect, style=filled];
31 [class="intent active", fillcolor=lightblue, label="how are you", shape=rect, style=filled];
32 [class=intent, fillcolor=lightblue, label="informlocation italy", shape=rect, style=filled];
33 [class=intent, fillcolor=lightblue, label=acknowledge, shape=rect, style=filled];
34 [class=intent, fillcolor=lightblue, label=goodbye, shape=rect, style=filled];
0 -> "-1" [class="", key=NONE, label=""];
0 -> 24 [class="", key=0];
0 -> 25 [class=active, key=0];
0 -> 26 [class="", key=0];
0 -> 27 [class="", key=0];
0 -> 28 [class="", key=0];
1 -> "-10" [class="", key=NONE, label=""];
2 -> "-1" [class="", key=NONE, label=""];
2 -> 29 [class="", key=0];
2 -> 30 [class="", key=0];
2 -> 31 [class=active, key=0];
3 -> "-11" [class="", key=NONE, label=""];
4 -> "-12" [class="", key=NONE, label=""];
5 -> "-6" [class="", key=NONE, label=""];
7 -> 32 [class="", key=0];
10 -> 33 [class="", key=0];
10 -> 34 [class="", key=0];
21 -> 23 [class=active, key=NONE, label=""];
21 -> 21 [class=active, key=NONE, label=""];
24 -> 1 [class="", key=0];
25 -> 2 [class=active, key=0];
26 -> 3 [class="", key=0];
27 -> 4 [class="", key=0];
28 -> 5 [class="", key=0];
29 -> 7 [class="", key=0];
30 -> 10 [class="", key=0];
31 -> 21 [class=active, key=0];
32 -> 3 [class="", key=0];
33 -> 4 [class="", key=0];
34 -> 1 [class="", key=0];
}