Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. {
  2. "actions": [
  3. {
  4. "description": "Default Welcome Intent",
  5. "name": "MAIN",
  6. "fulfillment": {
  7. "conversationName": "myCoolConversation"
  8. },
  9. "intent": {
  10. "name": "actions.intent.MAIN",
  11. "trigger": {
  12. "queryPatterns": [
  13. "talk to my cool action"
  14. ]
  15. }
  16. }
  17. },
  18. {
  19. "description": "Deep linking Intent",
  20. "name": "DEEPLINK_INTENT",
  21. "fulfillment": {
  22. "conversationName": "myCoolConversation"
  23. },
  24. "intent": {
  25. "name": "MY_COOL_DEEPLINK_INTENT",
  26. "trigger": {
  27. "queryPatterns": [
  28. "know more about this project",
  29. "ask about this project"
  30. ]
  31. }
  32. }
  33. }
  34. ],
  35. "conversations": {
  36. "myCoolConversation": {
  37. "name": "myCoolConversation",
  38. "url": "<YOUR_FIREBASE_CLOUD_FUNCTION_URL>"
  39. }
  40. }
  41.  
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement