-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstory_graph.dot
25 lines (25 loc) · 1.25 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
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_greet];
3 [class=active, fontsize=12, label=utter_ask_for_info];
4 [class=active, fontsize=12, label=fetch_user_info_form];
7 [class="intent dashed active", label=" ? ", shape=rect];
8 [class="intent active", fillcolor=lightblue, label="/greet", shape=rect, style=filled];
9 [class="intent active", fillcolor=lightblue, label="/ask_for_call", shape=rect, style=filled];
10 [class="intent active", fillcolor=lightblue, label="/user_provides_email", shape=rect, style=filled];
11 [class="intent active", fillcolor=lightblue, label="/user_provides_date", shape=rect, style=filled];
0 -> "-1" [class="", key=NONE, label=""];
0 -> 1 [class=active, key=NONE, label=""];
1 -> 8 [class=active, key=0];
2 -> 9 [class=active, key=0];
3 -> 4 [class=active, key=NONE, label=""];
4 -> 7 [class=active, key=NONE, label=""];
4 -> 10 [class=active, key=0];
4 -> 11 [class=active, key=0];
8 -> 2 [class=active, key=0];
9 -> 3 [class=active, key=0];
10 -> 4 [class=active, key=0];
11 -> 4 [class=active, key=0];
}