-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstory_graph.dot
More file actions
21 lines (21 loc) · 1 KB
/
story_graph.dot
File metadata and controls
21 lines (21 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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=active, fontsize=12, label=action_session_start];
2 [class=active, fontsize=12, label=utter_intro];
3 [class=active, fontsize=12, label=module_form];
16 [class="intent dashed active", label=" ? ", shape=rect];
17 [class="intent active", fillcolor=lightblue, label="/greet", shape=rect, style=filled];
18 [class="intent active", fillcolor=lightblue, label="/greet", shape=rect, style=filled];
19 [class="intent active", fillcolor=lightblue, label="/no", shape=rect, style=filled];
0 -> "-1" [class="", key=NONE, label=""];
0 -> 1 [class=active, key=NONE, label=""];
1 -> 17 [class=active, key=0];
2 -> 3 [class=active, key=NONE, label=""];
3 -> 16 [class=active, key=NONE, label=""];
3 -> 18 [class=active, key=0];
3 -> 19 [class=active, key=0];
17 -> 2 [class=active, key=0];
18 -> 3 [class=active, key=0];
19 -> 3 [class=active, key=0];
}