Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

LuisBot.json 4.3 KB

You have to be logged in to leave a comment. Sign In
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  1. {
  2. "luis_schema_version": "1.3.0",
  3. "name": "LuisBot",
  4. "desc": "",
  5. "culture": "en-us",
  6. "intents": [
  7. {
  8. "name": "None"
  9. },
  10. {
  11. "name": "SearchHotels"
  12. },
  13. {
  14. "name": "ShowHotelsReviews"
  15. },
  16. {
  17. "name": "Help"
  18. }
  19. ],
  20. "entities": [
  21. {
  22. "name": "Hotel"
  23. },
  24. {
  25. "name": "AirportCode"
  26. }
  27. ],
  28. "composites": [],
  29. "closedLists": [],
  30. "bing_entities": [
  31. "geography"
  32. ],
  33. "actions": [],
  34. "model_features": [
  35. {
  36. "name": "Near",
  37. "mode": true,
  38. "words": "near,around,close,nearby",
  39. "activated": true
  40. },
  41. {
  42. "name": "Show",
  43. "mode": true,
  44. "words": "show,find,look,search",
  45. "activated": true
  46. }
  47. ],
  48. "regex_features": [
  49. {
  50. "name": "AirportCodeRegex",
  51. "pattern": "[a-z]{3}",
  52. "activated": true
  53. }
  54. ],
  55. "utterances": [
  56. {
  57. "text": "look for hotels in miami",
  58. "intent": "SearchHotels",
  59. "entities": []
  60. },
  61. {
  62. "text": "search for hotels in seattle",
  63. "intent": "SearchHotels",
  64. "entities": []
  65. },
  66. {
  67. "text": "show me hotels in california",
  68. "intent": "SearchHotels",
  69. "entities": []
  70. },
  71. {
  72. "text": "show me the reviews of the amazing bot resort",
  73. "intent": "ShowHotelsReviews",
  74. "entities": [
  75. {
  76. "entity": "Hotel",
  77. "startPos": 5,
  78. "endPos": 8
  79. }
  80. ]
  81. },
  82. {
  83. "text": "can i see the reviews of extended bot hotel?",
  84. "intent": "ShowHotelsReviews",
  85. "entities": [
  86. {
  87. "entity": "Hotel",
  88. "startPos": 6,
  89. "endPos": 8
  90. }
  91. ]
  92. },
  93. {
  94. "text": "find reviews of hotelxya",
  95. "intent": "ShowHotelsReviews",
  96. "entities": [
  97. {
  98. "entity": "Hotel",
  99. "startPos": 3,
  100. "endPos": 3
  101. }
  102. ]
  103. },
  104. {
  105. "text": "show me reviews of the amazing hotel",
  106. "intent": "ShowHotelsReviews",
  107. "entities": [
  108. {
  109. "entity": "Hotel",
  110. "startPos": 4,
  111. "endPos": 6
  112. }
  113. ]
  114. },
  115. {
  116. "text": "what can i do?",
  117. "intent": "Help",
  118. "entities": []
  119. },
  120. {
  121. "text": "help me",
  122. "intent": "Help",
  123. "entities": []
  124. },
  125. {
  126. "text": "what are the available options?",
  127. "intent": "Help",
  128. "entities": []
  129. },
  130. {
  131. "text": "i need help",
  132. "intent": "Help",
  133. "entities": []
  134. },
  135. {
  136. "text": "best hotels in seattle",
  137. "intent": "SearchHotels",
  138. "entities": []
  139. },
  140. {
  141. "text": "hotels in los angeles",
  142. "intent": "SearchHotels",
  143. "entities": []
  144. },
  145. {
  146. "text": "can you show me hotels from los angeles?",
  147. "intent": "SearchHotels",
  148. "entities": []
  149. },
  150. {
  151. "text": "can you show me the reviews of the amazing resort & hotel",
  152. "intent": "ShowHotelsReviews",
  153. "entities": [
  154. {
  155. "entity": "Hotel",
  156. "startPos": 7,
  157. "endPos": 11
  158. }
  159. ]
  160. },
  161. {
  162. "text": "what are the reviews of the hotel bot framework?",
  163. "intent": "ShowHotelsReviews",
  164. "entities": [
  165. {
  166. "entity": "Hotel",
  167. "startPos": 5,
  168. "endPos": 8
  169. }
  170. ]
  171. },
  172. {
  173. "text": "find hotels near eze",
  174. "intent": "SearchHotels",
  175. "entities": [
  176. {
  177. "entity": "AirportCode",
  178. "startPos": 3,
  179. "endPos": 3
  180. }
  181. ]
  182. },
  183. {
  184. "text": "where can i stay near nnn?",
  185. "intent": "SearchHotels",
  186. "entities": [
  187. {
  188. "entity": "AirportCode",
  189. "startPos": 5,
  190. "endPos": 5
  191. }
  192. ]
  193. },
  194. {
  195. "text": "show hotels near att airport",
  196. "intent": "SearchHotels",
  197. "entities": [
  198. {
  199. "entity": "AirportCode",
  200. "startPos": 3,
  201. "endPos": 3
  202. }
  203. ]
  204. },
  205. {
  206. "text": "find hotels near agl",
  207. "intent": "SearchHotels",
  208. "entities": [
  209. {
  210. "entity": "AirportCode",
  211. "startPos": 3,
  212. "endPos": 3
  213. }
  214. ]
  215. },
  216. {
  217. "text": "find hotels around eze airport",
  218. "intent": "SearchHotels",
  219. "entities": [
  220. {
  221. "entity": "AirportCode",
  222. "startPos": 3,
  223. "endPos": 3
  224. }
  225. ]
  226. }
  227. ]
  228. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...