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

ZummerLuisApp.json 1.6 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
  1. {
  2. "luis_schema_version": "1.3.1",
  3. "versionId": "0.1",
  4. "name": "ZummerLuisApp",
  5. "desc": "",
  6. "culture": "en-us",
  7. "intents": [
  8. {
  9. "name": "Greeting"
  10. },
  11. {
  12. "name": "None"
  13. },
  14. {
  15. "name": "Search"
  16. }
  17. ],
  18. "entities": [
  19. {
  20. "name": "ArticleTopic"
  21. }
  22. ],
  23. "composites": [],
  24. "closedLists": [],
  25. "bing_entities": [],
  26. "actions": [],
  27. "model_features": [],
  28. "regex_features": [],
  29. "utterances": [
  30. {
  31. "text": "hi",
  32. "intent": "Greeting",
  33. "entities": []
  34. },
  35. {
  36. "text": "hello",
  37. "intent": "Greeting",
  38. "entities": []
  39. },
  40. {
  41. "text": "who is barack obama",
  42. "intent": "Search",
  43. "entities": [
  44. {
  45. "entity": "ArticleTopic",
  46. "startPos": 2,
  47. "endPos": 3
  48. }
  49. ]
  50. },
  51. {
  52. "text": "what is eiffel tower",
  53. "intent": "Search",
  54. "entities": [
  55. {
  56. "entity": "ArticleTopic",
  57. "startPos": 2,
  58. "endPos": 3
  59. }
  60. ]
  61. },
  62. {
  63. "text": "want to know more about paris",
  64. "intent": "Search",
  65. "entities": [
  66. {
  67. "entity": "ArticleTopic",
  68. "startPos": 5,
  69. "endPos": 5
  70. }
  71. ]
  72. },
  73. {
  74. "text": "tom hanks",
  75. "intent": "Search",
  76. "entities": [
  77. {
  78. "entity": "ArticleTopic",
  79. "startPos": 0,
  80. "endPos": 1
  81. }
  82. ]
  83. },
  84. {
  85. "text": "read more about pyramids",
  86. "intent": "Search",
  87. "entities": [
  88. {
  89. "entity": "ArticleTopic",
  90. "startPos": 3,
  91. "endPos": 3
  92. }
  93. ]
  94. }
  95. ]
  96. }
Tip!

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

Comments

Loading...