forked from thaotrongtran/study-buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intent.json
132 lines (132 loc) · 4.55 KB
/
intent.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"interactionModel": {
"languageModel": {
"invocationName": "study buddy",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
},
{
"name": "AddHomework",
"slots": [
{
"name": "task",
"type": "AMAZON.SearchQuery",
"samples": [
"The homework is"
]
},
{
"name": "date",
"type": "AMAZON.DATE",
"samples": [
"Due date is"
]
}
],
"samples": [
"add homework {task}",
"add {task}",
"please add {task}",
"I would like to add {task}",
"would you add {task}",
"can you add {task}",
"I have homework for {task}",
"set homework for {task}",
"could you add {task}",
"may I add {task}",
"might I add {task}"
]
},
{
"name": "GetHomework",
"slots": [],
"samples": [
"get some work done",
"let's get some work done",
"give me something to do",
"give me some assignment",
"what should I do",
"give me some task",
"give me a task",
"let's do some work",
"let's get some tasks done"
]
},
{
"name": "completeCurrent",
"slots": [],
"samples": [
"I completed the current task",
"Completed the current task",
"I have completed the current task",
"Current task is done"
]
}
],
"types": []
},
"dialog": {
"intents": [
{
"name": "AddHomework",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "task",
"type": "AMAZON.SearchQuery",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "Elicit.Slot.1078469289565.309930979273"
}
},
{
"name": "date",
"type": "AMAZON.DATE",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "Elicit.Slot.315160562311.1349199326985"
}
}
]
}
]
},
"prompts": [
{
"id": "Elicit.Slot.1078469289565.309930979273",
"variations": [
{
"type": "PlainText",
"value": "What is the homework again?"
}
]
},
{
"id": "Elicit.Slot.315160562311.1349199326985",
"variations": [
{
"type": "PlainText",
"value": "What is the due date?"
}
]
}
]
}
}