Advertisement
uopspop

Untitled

Apr 20th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. {
  2. "interactionModel": {
  3. "languageModel": {
  4. "invocationName": "announce angel",
  5. "intents": [
  6. {
  7. "name": "AMAZON.CancelIntent",
  8. "samples": [
  9. "cancel it"
  10. ]
  11. },
  12. {
  13. "name": "AMAZON.HelpIntent",
  14. "samples": [
  15. "give me help"
  16. ]
  17. },
  18. {
  19. "name": "AMAZON.StopIntent",
  20. "samples": [
  21. "stop it"
  22. ]
  23. },
  24. {
  25. "name": "AnswerIntent",
  26. "slots": [
  27. {
  28. "name": "Answer",
  29. "type": "LIST_OF_ANSWERS"
  30. }
  31. ],
  32. "samples": [
  33. "{Answer} is my answer",
  34. "is it {Answer}",
  35. "my answer is {Answer}",
  36. "the answer is {Answer}"
  37. ]
  38. },
  39. {
  40. "name": "AnnounceIntent",
  41. "slots": [],
  42. "samples": [
  43. "make announcement"
  44. ]
  45. },
  46. {
  47. "name": "AnswerOnlyIntent",
  48. "slots": [
  49. {
  50. "name": "Answer",
  51. "type": "LIST_OF_ANSWERS"
  52. }
  53. ],
  54. "samples": [
  55. "{Answer}"
  56. ]
  57. },
  58. {
  59. "name": "AnswerNoMeaning",
  60. "slots": [],
  61. "samples": [
  62. "I do not know"
  63. ]
  64. },
  65. {
  66. "name": "AMAZON.RepeatIntent",
  67. "samples": [
  68. "repeat it"
  69. ]
  70. },
  71. {
  72. "name": "AMAZON.YesIntent",
  73. "samples": [
  74. "yes"
  75. ]
  76. },
  77. {
  78. "name": "AMAZON.NoIntent",
  79. "samples": [
  80. "no"
  81. ]
  82. },
  83. {
  84. "name": "AMAZON.StartOverIntent",
  85. "samples": [
  86. "start new game",
  87. "start",
  88. "new game",
  89. "start game"
  90. ]
  91. },
  92. {
  93. "name": "AMAZON.NavigateHomeIntent",
  94. "samples": []
  95. }
  96. ],
  97. "types": [
  98. {
  99. "name": "LIST_OF_ANSWERS",
  100. "values": [
  101. {
  102. "name": {
  103. "value": "4"
  104. }
  105. },
  106. {
  107. "name": {
  108. "value": "3"
  109. }
  110. },
  111. {
  112. "name": {
  113. "value": "2"
  114. }
  115. },
  116. {
  117. "name": {
  118. "value": "1"
  119. }
  120. }
  121. ]
  122. }
  123. ]
  124. }
  125. }
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement