forked from jaywalker76/alexa-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen-US.json
82 lines (82 loc) · 1.78 KB
/
en-US.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
{
"interactionModel": {
"languageModel": {
"invocationName": "progressive response demo",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "GetFirstEventIntent",
"slots": [
{
"name": "day",
"type": "AMAZON.DATE",
"samples": [
"{day}"
]
}
],
"samples": [
"get events for {day}",
"give me events for {day}",
"give me events",
"what happened on {day}",
"what happened {day}",
"what happened",
"{day}"
]
},
{
"name": "AMAZON.YesIntent",
"samples": []
},
{
"name": "AMAZON.NoIntent",
"samples": []
}
],
"types": []
},
"dialog": {
"intents": [
{
"name": "GetFirstEventIntent",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "day",
"type": "AMAZON.DATE",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "Elicit.Slot.37536016194.449667870431"
}
}
]
}
]
},
"prompts": [
{
"id": "Elicit.Slot.37536016194.449667870431",
"variations": [
{
"type": "PlainText",
"value": "for which date?"
}
]
}
]
}
}