-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
78 lines (78 loc) · 2.52 KB
/
schema.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
{
"interactionModel": {
"languageModel": {
"invocationName": "arbitrary speech",
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "AMAZON.FallbackIntent",
"samples": []
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
},
{
"name": "UserCommandIntent",
"slots": [
{
"name": "UserCommand",
"type": "AMAZON.SearchQuery"
}
],
"samples": [
"GPT three {UserCommand}",
"body {UserCommand}",
"all {UserCommand}",
"ha {UserCommand}",
"hey {UserCommand}",
"yeah {UserCommand}",
"um {UserCommand}",
"hmm {UserCommand}",
"oh {UserCommand}",
"well {UserCommand}",
"no {UserCommand}",
"yes {UserCommand}",
"so {UserCommand}",
"odi {UserCommand}",
"ok {UserCommand}"
]
},
{
"name": "ClearContextIntent",
"slots": [],
"samples": [
"start over",
"clear context"
]
},
{
"name": "SayAgainIntent",
"slots": [],
"samples": [
"what was that",
"what were you saying",
"repeat one more time",
"say that again",
"what did you say",
"what",
"repeat",
"say again"
]
}
],
"types": []
}
}
}