-
Notifications
You must be signed in to change notification settings - Fork 6
/
InteractionModel.json
85 lines (85 loc) · 3.09 KB
/
InteractionModel.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"interactionModel": {
"languageModel": {
"invocationName": "google maps",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "GetCommuteToWork",
"slots": [],
"samples": [
"How is my commute",
"How is my commute to work",
"How is the traffic to work",
"How is the drive to work",
"My travel time to work"
]
},
{
"name": "GetCommuteFromWork",
"slots": [],
"samples": [
"How is my commute home",
"How is my commute home from work",
"How is the traffic home",
"How is the drive home",
"My travel time home from work"
]
},
{
"name": "GetDirectionsTo",
"slots": [
{
"name": "tocity",
"type": "AMAZON.City"
}
],
"samples": [
"Get directions to {tocity}",
"How long does it take to get to {tocity}",
"How far is {tocity}",
"How far away is {tocity}",
"How far to {tocity}",
"How long to {tocity}",
"Give me directions to {tocity}",
"For directions to {tocity}"
]
},
{
"name": "GetDirectionsFromTo",
"slots": [
{
"name": "fromcity",
"type": "AMAZON.City"
},
{
"name": "tocity",
"type": "AMAZON.City"
}
],
"samples": [
"Get directions from {fromcity} to {tocity}",
"How long does it take to get from {fromcity} to {tocity}",
"How far is it from {fromcity} to {tocity}",
"How far from {fromcity} to {tocity}",
"How long from {fromcity} to {tocity}",
"Give me directions from {fromcity} to {tocity}",
"For directions from {fromcity} to {tocity}"
]
}
],
"types": []
}
}
}