Advertisement
uopspop

Untitled

Dec 23rd, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. {
  2. "interactionModel": {
  3. "languageModel": {
  4. "invocationName": "meeting angel",
  5. "intents": [
  6. {
  7. "name": "AMAZON.CancelIntent",
  8. "samples": []
  9. },
  10. {
  11. "name": "AMAZON.HelpIntent",
  12. "samples": []
  13. },
  14. {
  15. "name": "AMAZON.StopIntent",
  16. "samples": []
  17. },
  18. {
  19. "name": "HelloWorldIntent",
  20. "slots": [],
  21. "samples": [
  22. "hello",
  23. "how are you",
  24. "say hi world",
  25. "say hi",
  26. "hi",
  27. "say hello world",
  28. "say hello"
  29. ]
  30. },
  31. {
  32. "name": "AMAZON.NavigateHomeIntent",
  33. "samples": []
  34. },
  35. {
  36. "name": "CreateMeetingSystemIntent",
  37. "slots": [],
  38. "samples": [
  39. "create",
  40. "create meeting system"
  41. ]
  42. },
  43. {
  44. "name": "BookMeetingIntent",
  45. "slots": [
  46. {
  47. "name": "DayOfWeek",
  48. "type": "AMAZON.DayOfWeek"
  49. },
  50. {
  51. "name": "Task",
  52. "type": "Task"
  53. }
  54. ],
  55. "samples": [
  56. "book {DayOfWeek} for {Task}",
  57. "book"
  58. ]
  59. }
  60. ],
  61. "types": [
  62. {
  63. "name": "Task",
  64. "values": [
  65. {
  66. "name": {
  67. "value": "team building"
  68. }
  69. },
  70. {
  71. "name": {
  72. "value": "meeting"
  73. }
  74. },
  75. {
  76. "name": {
  77. "value": "work"
  78. }
  79. }
  80. ]
  81. }
  82. ]
  83. }
  84. }
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement