-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInteractionModel.json
144 lines (144 loc) · 3.56 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
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
133
134
135
136
137
138
139
140
141
142
143
144
{
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "GetPriceIntent",
"samples": [
"what's the price of {cryptocurrency} in {fiat_currency}",
"what's the {cryptocurrency} exchange rate",
"how much is a {cryptocurrency} worth in {fiat_currency}",
"show prices",
"give prices",
"give {cryptocurrency} prices in {fiat_currency} ",
"get prices",
"get the current {cryptocurrency} price in {fiat_currency}",
"what is the price of {cryptocurrency} in {fiat_currency}",
"give me the price of {cryptocurrency} in {fiat_currency}",
"give me the price of {cryptocurrency}",
"look up the price of {cryptocurrency} in {fiat_currency}",
"list prices",
"how much does a {cryptocurrency} cost in {fiat_currency} ",
"how much does a {cryptocurrency} cost",
"how much is a {cryptocurrency} worth",
"how much is a {cryptocurrency} worth in {fiat_currency} ",
"list prices in {fiat_currency} ",
"get prices in {fiat_currency} ",
"update",
"update in {fiat_currency} ",
"update {cryptocurrency} in {fiat_currency} ",
"update {cryptocurrency} ",
"give me the price of {cryptocurrency} in {fiat_currency} ",
"give me the price of {cryptocurrency} ",
"give me price",
"give me the price",
"give me prices",
"give me an update on the {cryptocurrency} price",
"fetch price",
"fetch prices",
"fetch the price of {cryptocurrency} ",
"fetch the price of {cryptocurrency} in {fiat_currency} ",
"fetch me prices",
"fetch me the price of {cryptocurrency} ",
"fetch me the price of {cryptocurrency} in {fiat_currency} "
],
"slots": [
{
"name": "cryptocurrency",
"type": "CRYPTOCURRENCY_TYPE",
"samples": []
},
{
"name": "fiat_currency",
"type": "FIAT_CURRENCY_TYPE",
"samples": []
}
]
}
],
"types": [
{
"name": "CRYPTOCURRENCY_TYPE",
"values": [
{
"id": null,
"name": {
"value": "bitcoin",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "ethereum",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "litecoin",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "ether",
"synonyms": []
}
}
]
},
{
"name": "FIAT_CURRENCY_TYPE",
"values": [
{
"id": null,
"name": {
"value": "us dollars",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "pounds",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "euros",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "pounds stirling",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "dollars",
"synonyms": []
}
}
]
}
]
}