├── .gitignore ├── README.md ├── blocked.txt ├── composer.json ├── composer.lock ├── help.txt ├── home.php ├── index.php ├── location ├── location.txt └── time.txt ├── numbers └── .newnumbers └── response ├── agent.json ├── customSmalltalkResponses_en.json ├── entities ├── Swear.json ├── Swear_entries_en.json ├── chat.json ├── chat_entries_en.json ├── command.json ├── command_entries_en.json ├── happy-emoji.json ├── happy-emoji_entries_en.json ├── location.json ├── location_entries_en.json ├── music.json ├── music_entries_en.json ├── mynumber.json ├── mynumber_entries_en.json ├── sad-emoji.json ├── sad-emoji_entries_en.json ├── social.json ├── social_entries_en.json ├── song.json └── song_entries_en.json ├── intents ├── Color.json ├── Color_usersays_en.json ├── Command Prefix.json ├── Command Prefix_usersays_en.json ├── Default Fallback Intent.json ├── Default Welcome Intent.json ├── Default Welcome Intent_usersays_en.json ├── Find song.json ├── Find song_usersays_en.json ├── Friendship day.json ├── Friendship day_usersays_en.json ├── Gaming Facts.json ├── Gaming Facts_usersays_en.json ├── Good.morning.json ├── Good.morning_usersays_en.json ├── Good.night.json ├── Good.night_usersays_en.json ├── HowAreYou.json ├── HowAreYou_usersays_en.json ├── I need help.json ├── I need help_usersays_en.json ├── I_m fine.json ├── I_m fine_usersays_en.json ├── Im dead.json ├── Im dead_usersays_en.json ├── Interjection.json ├── Interjection_usersays_en.json ├── Smalltalk.���.Enjoyment.json ├── Smalltalk.���.Enjoyment_usersays_en.json ├── Suicide.help.json ├── Suicide.help_usersays_en.json ├── What do you like_.json ├── What do you like__usersays_en.json ├── Yeah.reply.json ├── Yeah.reply_usersays_en.json ├── battery.status.json ├── battery.status_usersays_en.json ├── call.sumith.json ├── call.sumith_usersays_en.json ├── date.today.json ├── date.today_usersays_en.json ├── hello.json ├── hello_usersays_en.json ├── jokes.get.json ├── jokes.get_usersays_en.json ├── love.intent.json ├── love.intent_usersays_en.json ├── monay.request.json ├── monay.request_usersays_en.json ├── mylocation.json ├── mylocation_usersays_en.json ├── mynumber.json ├── mynumber_usersays_en.json ├── name.conformation.no.json ├── name.conformation.no_usersays_en.json ├── name.conformation.yes.json ├── name.conformation.yes_usersays_en.json ├── quote on Friend.json ├── quote on Friend_usersays_en.json ├── smalltalk.BotAffection.json ├── smalltalk.BotAffection_usersays_en.json ├── smalltalk.BotIdentity.json ├── smalltalk.BotIdentity_usersays_en.json ├── smalltalk.BotPurpose.json ├── smalltalk.BotPurpose_usersays_en.json ├── smalltalk.UserApologetic.json ├── smalltalk.UserApologetic_usersays_en.json ├── smalltalk.UserAvailable.json ├── smalltalk.UserAvailable_usersays_en.json ├── smalltalk.UserClarify.json ├── smalltalk.UserClarify_usersays_en.json ├── smalltalk.UserDelayed.json ├── smalltalk.UserDelayed_usersays_en.json ├── smalltalk.UserProbing.json ├── smalltalk.UserProbing_usersays_en.json ├── smalltalk.UserReady.json ├── smalltalk.UserReady_usersays_en.json ├── smalltalk.UserScoping.json ├── smalltalk.UserScoping_usersays_en.json ├── smalltalk.common.BYE.json ├── smalltalk.common.BYE_usersays_en.json ├── smalltalk.common.NO.json ├── smalltalk.common.NO_usersays_en.json ├── smalltalk.common.STOP.json ├── smalltalk.common.STOP_usersays_en.json ├── smalltalk.common.THANKS.json ├── smalltalk.common.THANKS_usersays_en.json ├── smalltalk.common.YES_OK.json ├── smalltalk.common.YES_OK_usersays_en.json ├── smalltalk.reaction.amused.json ├── smalltalk.reaction.amused_usersays_en.json ├── smalltalk.reaction.indifferent.json ├── smalltalk.reaction.indifferent_usersays_en.json ├── smalltalk.reaction.negative.json ├── smalltalk.reaction.negative_usersays_en.json ├── smalltalk.reaction.positive.json ├── smalltalk.reaction.positive_usersays_en.json ├── smalltalk.reaction.understanding.json ├── smalltalk.reaction.understanding_usersays_en.json ├── smalltalk.refocus.json ├── smalltalk.refocus_usersays_en.json ├── smalltalk.request.advice.json ├── smalltalk.request.advice_usersays_en.json ├── smalltalk.request.age.json ├── smalltalk.request.age_usersays_en.json ├── smalltalk.request.job.json ├── smalltalk.request.job_usersays_en.json ├── smalltalk.request.name.json ├── smalltalk.request.name_usersays_en.json ├── social.accounts.json ├── social.accounts_usersays_en.json ├── user.name.data.json ├── user.name.data_usersays_en.json ├── user.name.json └── user.name_usersays_en.json ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | 3 | secret.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rosebot 2 | My personal chat bot 3 | ## Query 4 | - JSON Query 5 | 6 | ```bash 7 | { 8 | "query": { 9 | "sender": "sumith", 10 | "message": "hi" 11 | } 12 | } 13 | ``` 14 | - Query Command 15 | 16 | ```bash 17 | curl -s -X POST http://localhost:8080 \ 18 | -d '{"query":{"sender": "sumith","message": "hi"}}' 19 | ``` 20 | 21 | ## Response 22 | apt install jq 23 | ```bash 24 | ~$ curl -s -X POST http://localhost:8080 -d '{"query":{"sender": "sumith","message": "call sumith"}}' | jq ##apt install jq 25 | { 26 | "replies": [ 27 | { 28 | "message": "*Rose* \r\n _Calling sumith...._" 29 | }, 30 | { 31 | "message": "*Rose* \r\n_wait a minute...._" 32 | }, 33 | { 34 | "message": "*Rose* \r\n_If there is no response within 1 minute sumith may be busy_" 35 | } 36 | ] 37 | } 38 | ``` 39 | 40 | ```bash 41 | ~$ curl -s -X POST http://localhost:8080 -d '{"query":{"sender": "sumith","message": "tell me a joke"}}' | jq 42 | { 43 | "replies": [ 44 | { 45 | "message": "*Rose*\r\n_A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station. ._" 46 | } 47 | ] 48 | } 49 | ``` 50 | 51 | - message from new number 52 | 53 | ```bash 54 | ~$ curl -s -X POST http://localhost:8080 -d '{"query":{"sender": "+91 12345 67890","message": "hi"}}' | jq 55 | { 56 | "replies": [ 57 | { 58 | "message": "*Rose*\r\n_I haven't seen your contact in sumith's contact list_" 59 | }, 60 | { 61 | "message": "*Rose*\r\n_who are you ?_" 62 | } 63 | ] 64 | } 65 | -------------------------------------------------------------------------------- /blocked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/rosebot/314f8e0b6c0a905908c89d5018afc1a654062f37/blocked.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sumithemmadi/rosebot", 3 | "description": "my personal chat bot", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "sumithemmadi", 8 | "email": "sumithemmadi244@gmail.com" 9 | } 10 | ], 11 | "require": { 12 | "google/cloud-dialogflow": "^0.23.0", 13 | "vlucas/phpdotenv": "^5.3" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumithemmadi/rosebot/314f8e0b6c0a905908c89d5018afc1a654062f37/help.txt -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /location/location.txt: -------------------------------------------------------------------------------- 1 | Satadar Nagar, Ward 116 Allapur, Hyderabad, Kukatpally mandal, Medchal–Malkajgiri, Telangana, 500018, India 2 | lat : 17.460790610475666 3 | lon : 78.40805063929753 4 | -------------------------------------------------------------------------------- /location/time.txt: -------------------------------------------------------------------------------- 1 | Sun Aug 29 09:13:28 IST 2021 2 | -------------------------------------------------------------------------------- /numbers/.newnumbers: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /response/agent.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "", 3 | "language": "en", 4 | "shortDescription": "Small talk topics to help make your bot more personable", 5 | "examples": "User: Hello!\nUser: How are you?\nUser: Thank you!\nUser: You\u0027re welcome.\nUser: What\u0027s up?\nUser: I\u0027m bored.\nUser: I\u0027m joking.\nUser: Well done!\nUser: Who are you?\nUser: How old are you?\nUser: You\u0027re clever.\nUser: What do you do for fun?", 6 | "linkToDocs": "", 7 | "displayName": "NewAgent", 8 | "activeAssistantAgents": [ 9 | "smalltalk-domain-on" 10 | ], 11 | "disableInteractionLogs": false, 12 | "disableStackdriverLogs": true, 13 | "googleAssistant": { 14 | "googleAssistantCompatible": false, 15 | "project": "", 16 | "welcomeIntentSignInRequired": false, 17 | "startIntents": [], 18 | "systemIntents": [], 19 | "endIntentIds": [], 20 | "oAuthLinking": { 21 | "required": false, 22 | "providerId": "", 23 | "authorizationUrl": "", 24 | "tokenUrl": "", 25 | "scopes": "", 26 | "privacyPolicyUrl": "", 27 | "grantType": "AUTH_CODE_GRANT" 28 | }, 29 | "voiceType": "VOICE_TYPE_UNSPECIFIED", 30 | "capabilities": [], 31 | "env": "", 32 | "protocolVersion": "PROTOCOL_VERSION_UNSPECIFIED", 33 | "autoPreviewEnabled": false, 34 | "isDeviceAgent": false 35 | }, 36 | "defaultTimezone": "America/New_York", 37 | "webhook": { 38 | "url": "https://janis.ai", 39 | "username": "", 40 | "headers": { 41 | "": "" 42 | }, 43 | "available": false, 44 | "useForDomains": false, 45 | "cloudFunctionsEnabled": false, 46 | "cloudFunctionsInitialized": false 47 | }, 48 | "isPrivate": false, 49 | "mlMinConfidence": 0.56, 50 | "supportedLanguages": [], 51 | "enableOnePlatformApi": true, 52 | "onePlatformApiVersion": "v2", 53 | "secondaryKey": "8b4e8831fc6345988493ae1bb4bc2e31", 54 | "analyzeQueryTextSentiment": false, 55 | "enabledKnowledgeBaseNames": [], 56 | "knowledgeServiceConfidenceAdjustment": -0.4, 57 | "dialogBuilderMode": false, 58 | "baseActionPackagesUrl": "", 59 | "enableSpellCorrection": false 60 | } -------------------------------------------------------------------------------- /response/entities/Swear.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "b4a63e2c-7ceb-4cbc-ba49-0c972e6c9584", 3 | "name": "Swear", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": true, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/Swear_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "Fuck", 4 | "synonyms": [ 5 | "Fuck", 6 | "fuck", 7 | "Fucker" 8 | ] 9 | }, 10 | { 11 | "value": "Ass", 12 | "synonyms": [ 13 | "Ass", 14 | "Asshole", 15 | "Jackass" 16 | ] 17 | }, 18 | { 19 | "value": "Nigger", 20 | "synonyms": [ 21 | "Nigger", 22 | "Negro" 23 | ] 24 | }, 25 | { 26 | "value": "Shit", 27 | "synonyms": [ 28 | "Shit" 29 | ] 30 | }, 31 | { 32 | "value": "Damn", 33 | "synonyms": [ 34 | "Damn" 35 | ] 36 | }, 37 | { 38 | "value": "Bitch", 39 | "synonyms": [ 40 | "Bitch" 41 | ] 42 | }, 43 | { 44 | "value": "Whore", 45 | "synonyms": [ 46 | "Whore", 47 | "Hoe" 48 | ] 49 | } 50 | ] -------------------------------------------------------------------------------- /response/entities/chat.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "5cdca15b-8fd6-462d-9862-e7d872a272d4", 3 | "name": "chat", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/chat_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "agent", 4 | "synonyms": [ 5 | "agent", 6 | "live agent" 7 | ] 8 | }, 9 | { 10 | "value": "chat", 11 | "synonyms": [ 12 | "start chat", 13 | "chat live", 14 | "live chat", 15 | "chat" 16 | ] 17 | }, 18 | { 19 | "value": "human", 20 | "synonyms": [ 21 | "human" 22 | ] 23 | }, 24 | { 25 | "value": "assistance", 26 | "synonyms": [ 27 | "assistance" 28 | ] 29 | }, 30 | { 31 | "value": "support", 32 | "synonyms": [ 33 | "customer support", 34 | "customer service", 35 | "support", 36 | "live support" 37 | ] 38 | } 39 | ] -------------------------------------------------------------------------------- /response/entities/command.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "87135c73-622b-4170-b8a8-a4e43e0edc3d", 3 | "name": "command", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/command_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "help", 4 | "synonyms": [ 5 | "help", 6 | "helper" 7 | ] 8 | }, 9 | { 10 | "value": "utility", 11 | "synonyms": [ 12 | "utility" 13 | ] 14 | }, 15 | { 16 | "value": "administration", 17 | "synonyms": [ 18 | "administration", 19 | "admin" 20 | ] 21 | }, 22 | { 23 | "value": "fun", 24 | "synonyms": [ 25 | "fun", 26 | "funny" 27 | ] 28 | }, 29 | { 30 | "value": "music", 31 | "synonyms": [ 32 | "music", 33 | "song", 34 | "songs" 35 | ] 36 | }, 37 | { 38 | "value": "system", 39 | "synonyms": [ 40 | "system" 41 | ] 42 | } 43 | ] -------------------------------------------------------------------------------- /response/entities/happy-emoji.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "62a1c799-6912-40ec-9881-50a2c2d66139", 3 | "name": "happy-emoji", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/happy-emoji_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "👍", 4 | "synonyms": [ 5 | "👍" 6 | ] 7 | }, 8 | { 9 | "value": "😀", 10 | "synonyms": [ 11 | "😀" 12 | ] 13 | }, 14 | { 15 | "value": "😁", 16 | "synonyms": [ 17 | "😁" 18 | ] 19 | }, 20 | { 21 | "value": "😂", 22 | "synonyms": [ 23 | "😂" 24 | ] 25 | }, 26 | { 27 | "value": "🤣", 28 | "synonyms": [ 29 | "🤣" 30 | ] 31 | }, 32 | { 33 | "value": "😃", 34 | "synonyms": [ 35 | "😃" 36 | ] 37 | }, 38 | { 39 | "value": "😄", 40 | "synonyms": [ 41 | "😄" 42 | ] 43 | }, 44 | { 45 | "value": "😆", 46 | "synonyms": [ 47 | "😆" 48 | ] 49 | }, 50 | { 51 | "value": "😉", 52 | "synonyms": [ 53 | "😉" 54 | ] 55 | }, 56 | { 57 | "value": "😊", 58 | "synonyms": [ 59 | "😊" 60 | ] 61 | }, 62 | { 63 | "value": "😋", 64 | "synonyms": [ 65 | "😋" 66 | ] 67 | }, 68 | { 69 | "value": "😎", 70 | "synonyms": [ 71 | "😎" 72 | ] 73 | }, 74 | { 75 | "value": "😍", 76 | "synonyms": [ 77 | "😍" 78 | ] 79 | }, 80 | { 81 | "value": "😘", 82 | "synonyms": [ 83 | "😘" 84 | ] 85 | }, 86 | { 87 | "value": "😛", 88 | "synonyms": [ 89 | "😛" 90 | ] 91 | }, 92 | { 93 | "value": "😜", 94 | "synonyms": [ 95 | "😜" 96 | ] 97 | }, 98 | { 99 | "value": "😝", 100 | "synonyms": [ 101 | "😝" 102 | ] 103 | } 104 | ] -------------------------------------------------------------------------------- /response/entities/location.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "740d803a-f8cd-48ef-a587-d69a3bf80185", 3 | "name": "location", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/location_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "location", 4 | "synonyms": [ 5 | "location" 6 | ] 7 | } 8 | ] -------------------------------------------------------------------------------- /response/entities/music.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "ee6eddbe-d040-498d-a81b-b885dbd63f68", 3 | "name": "music", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": true, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/music_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "electro", 4 | "synonyms": [ 5 | "electro", 6 | "electro swing" 7 | ] 8 | }, 9 | { 10 | "value": "chill", 11 | "synonyms": [ 12 | "chill", 13 | "chillstep" 14 | ] 15 | }, 16 | { 17 | "value": "classical", 18 | "synonyms": [ 19 | "classical" 20 | ] 21 | }, 22 | { 23 | "value": "retro", 24 | "synonyms": [ 25 | "retro", 26 | "retro renegade" 27 | ] 28 | }, 29 | { 30 | "value": "metal", 31 | "synonyms": [ 32 | "metal" 33 | ] 34 | }, 35 | { 36 | "value": "hiphop", 37 | "synonyms": [ 38 | "hip-hop", 39 | "hiphop", 40 | "hop" 41 | ] 42 | }, 43 | { 44 | "value": "rock", 45 | "synonyms": [ 46 | "rock-n-roll", 47 | "rock" 48 | ] 49 | }, 50 | { 51 | "value": "jazz", 52 | "synonyms": [ 53 | "jazz" 54 | ] 55 | }, 56 | { 57 | "value": "pop", 58 | "synonyms": [ 59 | "pop" 60 | ] 61 | } 62 | ] -------------------------------------------------------------------------------- /response/entities/mynumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "68bca069-c871-4539-9192-342027059729", 3 | "name": "mynumber", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/mynumber_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "GooglePay", 4 | "synonyms": [ 5 | "GooglePay", 6 | "Google pay", 7 | "Gpay" 8 | ] 9 | }, 10 | { 11 | "value": "Phone pe", 12 | "synonyms": [ 13 | "Phone pe", 14 | "Phonepe", 15 | "Phone pay" 16 | ] 17 | }, 18 | { 19 | "value": "Paytm", 20 | "synonyms": [ 21 | "Paytm" 22 | ] 23 | }, 24 | { 25 | "value": "Amazon pay", 26 | "synonyms": [ 27 | "Amazon pay" 28 | ] 29 | }, 30 | { 31 | "value": "WhatsApp", 32 | "synonyms": [ 33 | "WhatsApp", 34 | "Whatsapp" 35 | ] 36 | } 37 | ] -------------------------------------------------------------------------------- /response/entities/sad-emoji.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "90a767fa-42b4-47e8-affc-985c6a602988", 3 | "name": "sad-emoji", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/sad-emoji_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "😏", 4 | "synonyms": [ 5 | "😏" 6 | ] 7 | }, 8 | { 9 | "value": "😪", 10 | "synonyms": [ 11 | "😪" 12 | ] 13 | }, 14 | { 15 | "value": "😥", 16 | "synonyms": [ 17 | "😥" 18 | ] 19 | }, 20 | { 21 | "value": "😒", 22 | "synonyms": [ 23 | "😒" 24 | ] 25 | }, 26 | { 27 | "value": "😕", 28 | "synonyms": [ 29 | "😕" 30 | ] 31 | }, 32 | { 33 | "value": "😓", 34 | "synonyms": [ 35 | "😓" 36 | ] 37 | }, 38 | { 39 | "value": "☹", 40 | "synonyms": [ 41 | "☹" 42 | ] 43 | }, 44 | { 45 | "value": "🙁", 46 | "synonyms": [ 47 | "🙁" 48 | ] 49 | }, 50 | { 51 | "value": "😞", 52 | "synonyms": [ 53 | "😞" 54 | ] 55 | }, 56 | { 57 | "value": "😤", 58 | "synonyms": [ 59 | "😤" 60 | ] 61 | }, 62 | { 63 | "value": "😢", 64 | "synonyms": [ 65 | "😢" 66 | ] 67 | }, 68 | { 69 | "value": "😭", 70 | "synonyms": [ 71 | "😭" 72 | ] 73 | }, 74 | { 75 | "value": "😩", 76 | "synonyms": [ 77 | "😩" 78 | ] 79 | }, 80 | { 81 | "value": "😬", 82 | "synonyms": [ 83 | "😬" 84 | ] 85 | }, 86 | { 87 | "value": "😰", 88 | "synonyms": [ 89 | "😰" 90 | ] 91 | }, 92 | { 93 | "value": "😱", 94 | "synonyms": [ 95 | "😱" 96 | ] 97 | }, 98 | { 99 | "value": "😡", 100 | "synonyms": [ 101 | "😡" 102 | ] 103 | }, 104 | { 105 | "value": "😈", 106 | "synonyms": [ 107 | "😈", 108 | "👿" 109 | ] 110 | }, 111 | { 112 | "value": "😠", 113 | "synonyms": [ 114 | "😠" 115 | ] 116 | }, 117 | { 118 | "value": "😿", 119 | "synonyms": [ 120 | "😿", 121 | "😾", 122 | "🙀", 123 | "😼" 124 | ] 125 | } 126 | ] -------------------------------------------------------------------------------- /response/entities/social.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "fb6fcdd1-115f-441d-9959-ec0318f28d33", 3 | "name": "social", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": false, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/entities/social_entries_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "value": "Facebook", 4 | "synonyms": [ 5 | "facebook", 6 | "fb" 7 | ] 8 | }, 9 | { 10 | "value": "Instagram", 11 | "synonyms": [ 12 | "instagram", 13 | "Insta" 14 | ] 15 | }, 16 | { 17 | "value": "Twitter", 18 | "synonyms": [ 19 | "Twitter" 20 | ] 21 | }, 22 | { 23 | "value": "Github", 24 | "synonyms": [ 25 | "Github" 26 | ] 27 | }, 28 | { 29 | "value": "Snapshot", 30 | "synonyms": [ 31 | "snapshot" 32 | ] 33 | }, 34 | { 35 | "value": "LinkedIn", 36 | "synonyms": [ 37 | "LinkedIn" 38 | ] 39 | } 40 | ] -------------------------------------------------------------------------------- /response/entities/song.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "07fb0fcb-c69a-4155-8b10-2716e073aff5", 3 | "name": "song", 4 | "isOverridable": true, 5 | "isEnum": false, 6 | "isRegexp": false, 7 | "automatedExpansion": true, 8 | "allowFuzzyExtraction": false 9 | } -------------------------------------------------------------------------------- /response/intents/Color.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "7f062895-8620-4d6c-be4d-cf0b4374994a", 3 | "name": "Color", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.color", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I prefer any color that makes you happy.", 20 | "I like any color that the world offers.", 21 | "I\u0027m a AI so i can\u0027t see color but be free to imagine me liking any color.", 22 | "As a bot I can\u0027t see color but from how i look it looks like I llove pink." 23 | ], 24 | "condition": "" 25 | } 26 | ], 27 | "speech": [] 28 | } 29 | ], 30 | "priority": 500000, 31 | "webhookUsed": false, 32 | "webhookForSlotFilling": false, 33 | "fallbackIntent": false, 34 | "events": [], 35 | "conditionalResponses": [], 36 | "condition": "", 37 | "conditionalFollowupEvents": [] 38 | } -------------------------------------------------------------------------------- /response/intents/Color_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "4f93a056-16fb-41b5-88f2-d751c7d875d8", 4 | "data": [ 5 | { 6 | "text": " what is your favorite color?", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "73189f2d-c5ef-4d2b-9595-dd8c068ded8d", 17 | "data": [ 18 | { 19 | "text": " color?", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | } 28 | ] -------------------------------------------------------------------------------- /response/intents/Command Prefix.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "35176dfb-3831-41e4-9832-0cb169b6df4f", 3 | "name": "Command Prefix", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "command.prefix", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "1530d3e0-6c4c-474a-b190-31506b738571", 14 | "name": "command", 15 | "required": false, 16 | "dataType": "@command", 17 | "value": "$command", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "condition": "" 34 | } 35 | ], 36 | "speech": [] 37 | } 38 | ], 39 | "priority": 500000, 40 | "webhookUsed": false, 41 | "webhookForSlotFilling": false, 42 | "fallbackIntent": false, 43 | "events": [], 44 | "conditionalResponses": [], 45 | "condition": "", 46 | "conditionalFollowupEvents": [] 47 | } -------------------------------------------------------------------------------- /response/intents/Command Prefix_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d3f510f3-fd95-4fcd-8f37-083c19cc6bff", 4 | "data": [ 5 | { 6 | "text": "prefix for ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "utility", 11 | "meta": "@command", 12 | "alias": "command", 13 | "userDefined": true 14 | } 15 | ], 16 | "isTemplate": false, 17 | "count": 0, 18 | "lang": "en", 19 | "updated": 0 20 | }, 21 | { 22 | "id": "bc6eca30-3cf6-42b3-ade5-1034eee02186", 23 | "data": [ 24 | { 25 | "text": "what is the prefix for ", 26 | "userDefined": false 27 | }, 28 | { 29 | "text": "help", 30 | "meta": "@command", 31 | "alias": "command", 32 | "userDefined": false 33 | }, 34 | { 35 | "text": "?", 36 | "userDefined": false 37 | } 38 | ], 39 | "isTemplate": false, 40 | "count": 0, 41 | "lang": "en", 42 | "updated": 0 43 | }, 44 | { 45 | "id": "70397d98-6aab-490d-9e2d-65c97b7146a0", 46 | "data": [ 47 | { 48 | "text": "what is your prefixes?", 49 | "userDefined": false 50 | } 51 | ], 52 | "isTemplate": false, 53 | "count": 0, 54 | "lang": "en", 55 | "updated": 0 56 | }, 57 | { 58 | "id": "c8445896-4b79-455d-9c94-54ee78b198a9", 59 | "data": [ 60 | { 61 | "text": "prefix", 62 | "userDefined": false 63 | } 64 | ], 65 | "isTemplate": false, 66 | "count": 0, 67 | "lang": "en", 68 | "updated": 0 69 | } 70 | ] -------------------------------------------------------------------------------- /response/intents/Default Fallback Intent.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f09d302c-058f-4b26-949a-151e0c14ecf0", 3 | "name": "Default Fallback Intent", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "input.unknown", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I didn\u0027t get that. Can you say it again?", 20 | "I missed what you said. What was that?", 21 | "Sorry, could you say that again?", 22 | "Sorry, can you say that again?", 23 | "Can you say that again?", 24 | "Sorry, I didn\u0027t get that. Can you rephrase?", 25 | "Sorry, what was that?", 26 | "One more time?", 27 | "What was that?", 28 | "Say that one more time?", 29 | "I didn\u0027t get that. Can you repeat?", 30 | "I missed that, say that again?" 31 | ], 32 | "condition": "" 33 | } 34 | ], 35 | "speech": [] 36 | } 37 | ], 38 | "priority": 500000, 39 | "webhookUsed": false, 40 | "webhookForSlotFilling": false, 41 | "fallbackIntent": true, 42 | "events": [], 43 | "conditionalResponses": [], 44 | "condition": "", 45 | "conditionalFollowupEvents": [] 46 | } -------------------------------------------------------------------------------- /response/intents/Default Welcome Intent.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "741feb03-090e-4f2c-8a2d-39c0601d83ff", 3 | "name": "Default Welcome Intent", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "input.welcome", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Hi! How are you doing?", 20 | "Hello! How can I help you?", 21 | "Good day! What can I do for you today?", 22 | "Greetings! How can I assist?" 23 | ], 24 | "condition": "" 25 | } 26 | ], 27 | "speech": [] 28 | } 29 | ], 30 | "priority": 500000, 31 | "webhookUsed": false, 32 | "webhookForSlotFilling": false, 33 | "fallbackIntent": false, 34 | "events": [ 35 | { 36 | "name": "WELCOME" 37 | } 38 | ], 39 | "conditionalResponses": [], 40 | "condition": "", 41 | "conditionalFollowupEvents": [] 42 | } -------------------------------------------------------------------------------- /response/intents/Default Welcome Intent_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "916008ff-31e7-4eea-90b2-92da7497c96d", 4 | "data": [ 5 | { 6 | "text": "just going to say hi", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "1db71a19-1ca5-4edf-a765-8df8a327438b", 17 | "data": [ 18 | { 19 | "text": "heya", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "499015de-f45a-4936-94a7-83cdd9315b97", 30 | "data": [ 31 | { 32 | "text": "hello hi", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "31abe1eb-cca5-413c-a7c7-f0058b131a1e", 43 | "data": [ 44 | { 45 | "text": "howdy", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "6a53a956-22ac-4995-b6a3-1b20e615d478", 56 | "data": [ 57 | { 58 | "text": "hey there", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "78b042c0-c234-4bfd-a72c-38a996ac0e36", 69 | "data": [ 70 | { 71 | "text": "hi there", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 1, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "bfffcb71-9f3d-46ec-9785-e0bf9702f6d1", 82 | "data": [ 83 | { 84 | "text": "greetings", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "038669b7-63ba-4137-aba4-c32208ae58b7", 95 | "data": [ 96 | { 97 | "text": "hey", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "5a400713-fe4a-43e9-8dc2-b28b6bfcf33c", 108 | "data": [ 109 | { 110 | "text": "long time no see", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "1b69556b-5c88-48cb-bbb7-13df1bac9a82", 121 | "data": [ 122 | { 123 | "text": "hello", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "b484baa3-7584-4311-82f1-5951faa8fae0", 134 | "data": [ 135 | { 136 | "text": "lovely day isn\u0027t it", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | }, 145 | { 146 | "id": "a7d0c529-48c1-4fcf-93e9-656b8bab8543", 147 | "data": [ 148 | { 149 | "text": "I greet you", 150 | "userDefined": false 151 | } 152 | ], 153 | "isTemplate": false, 154 | "count": 0, 155 | "lang": "en", 156 | "updated": 0 157 | }, 158 | { 159 | "id": "0530a4b8-7960-4737-ade2-b530020341ef", 160 | "data": [ 161 | { 162 | "text": "hello again", 163 | "userDefined": false 164 | } 165 | ], 166 | "isTemplate": false, 167 | "count": 0, 168 | "lang": "en", 169 | "updated": 0 170 | }, 171 | { 172 | "id": "c9e27c94-b660-4d3b-875f-b850fdbca0d1", 173 | "data": [ 174 | { 175 | "text": "hi", 176 | "userDefined": false 177 | } 178 | ], 179 | "isTemplate": false, 180 | "count": 0, 181 | "lang": "en", 182 | "updated": 0 183 | }, 184 | { 185 | "id": "d1709135-8c96-4f45-8575-425bbd34726e", 186 | "data": [ 187 | { 188 | "text": "hello there", 189 | "userDefined": false 190 | } 191 | ], 192 | "isTemplate": false, 193 | "count": 0, 194 | "lang": "en", 195 | "updated": 0 196 | }, 197 | { 198 | "id": "0eceecc0-ac73-437c-b7a9-34e37641793a", 199 | "data": [ 200 | { 201 | "text": "a good day", 202 | "userDefined": false 203 | } 204 | ], 205 | "isTemplate": false, 206 | "count": 0, 207 | "lang": "en", 208 | "updated": 0 209 | } 210 | ] -------------------------------------------------------------------------------- /response/intents/Find song.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "cb5a5010-b1f5-4852-8fbe-9e077abd08ce", 3 | "name": "Find song", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "request.song", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "8924a1b4-e911-446b-a8c2-cc46f97a6a8c", 14 | "name": "music", 15 | "required": false, 16 | "dataType": "@music", 17 | "value": "$music", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | }, 26 | { 27 | "id": "f7c8b688-a8ba-4005-956a-b20e40898618", 28 | "name": "song", 29 | "required": false, 30 | "dataType": "@song", 31 | "value": "$song", 32 | "defaultValue": "", 33 | "isList": false, 34 | "prompts": [], 35 | "promptMessages": [], 36 | "noMatchPromptMessages": [], 37 | "noInputPromptMessages": [], 38 | "outputDialogContexts": [] 39 | } 40 | ], 41 | "messages": [ 42 | { 43 | "type": "0", 44 | "title": "", 45 | "textToSpeech": "", 46 | "lang": "en", 47 | "speech": [ 48 | "$music $song" 49 | ], 50 | "condition": "" 51 | } 52 | ], 53 | "speech": [] 54 | } 55 | ], 56 | "priority": 500000, 57 | "webhookUsed": false, 58 | "webhookForSlotFilling": false, 59 | "fallbackIntent": false, 60 | "events": [], 61 | "conditionalResponses": [], 62 | "condition": "", 63 | "conditionalFollowupEvents": [] 64 | } -------------------------------------------------------------------------------- /response/intents/Find song_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "c868b07e-0c07-4ae0-b5b2-aa3611529c38", 4 | "data": [ 5 | { 6 | "text": "play ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "history has its eyes on you", 11 | "meta": "@song", 12 | "alias": "song", 13 | "userDefined": false 14 | } 15 | ], 16 | "isTemplate": false, 17 | "count": 0, 18 | "lang": "en", 19 | "updated": 0 20 | }, 21 | { 22 | "id": "e1e8f595-8694-47aa-8a9e-b7bee2d5b97e", 23 | "data": [ 24 | { 25 | "text": "can you find me some ", 26 | "userDefined": false 27 | }, 28 | { 29 | "text": "chill", 30 | "meta": "@music", 31 | "alias": "music", 32 | "userDefined": false 33 | }, 34 | { 35 | "text": " ", 36 | "userDefined": false 37 | }, 38 | { 39 | "text": "music", 40 | "userDefined": false 41 | }, 42 | { 43 | "text": "?", 44 | "userDefined": false 45 | } 46 | ], 47 | "isTemplate": false, 48 | "count": 0, 49 | "lang": "en", 50 | "updated": 0 51 | }, 52 | { 53 | "id": "541ac80f-c0ed-449b-aba8-1d82092006c4", 54 | "data": [ 55 | { 56 | "text": "play ", 57 | "userDefined": false 58 | }, 59 | { 60 | "text": "disco", 61 | "meta": "@music", 62 | "alias": "music", 63 | "userDefined": true 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | }, 71 | { 72 | "id": "4ebb2662-bfd8-4d18-ab66-419098eb2ffe", 73 | "data": [ 74 | { 75 | "text": "play some ", 76 | "userDefined": false 77 | }, 78 | { 79 | "text": "rock", 80 | "meta": "@music", 81 | "alias": "music", 82 | "userDefined": false 83 | }, 84 | { 85 | "text": " for me", 86 | "userDefined": false 87 | } 88 | ], 89 | "isTemplate": false, 90 | "count": 0, 91 | "lang": "en", 92 | "updated": 0 93 | }, 94 | { 95 | "id": "cf9e462f-03c8-485a-a550-916e75b5f29a", 96 | "data": [ 97 | { 98 | "text": "can you find me some hip ", 99 | "userDefined": false 100 | }, 101 | { 102 | "text": "hop", 103 | "meta": "@music", 104 | "alias": "music", 105 | "userDefined": false 106 | }, 107 | { 108 | "text": " ", 109 | "userDefined": false 110 | }, 111 | { 112 | "text": "music", 113 | "userDefined": false 114 | }, 115 | { 116 | "text": "?", 117 | "userDefined": false 118 | } 119 | ], 120 | "isTemplate": false, 121 | "count": 0, 122 | "lang": "en", 123 | "updated": 0 124 | }, 125 | { 126 | "id": "1bf7ad27-39b8-41d4-b503-fff900d67f33", 127 | "data": [ 128 | { 129 | "text": "Play some ", 130 | "userDefined": false 131 | }, 132 | { 133 | "text": "rock", 134 | "meta": "@music", 135 | "alias": "music", 136 | "userDefined": false 137 | } 138 | ], 139 | "isTemplate": false, 140 | "count": 0, 141 | "lang": "en", 142 | "updated": 0 143 | } 144 | ] -------------------------------------------------------------------------------- /response/intents/Friendship day.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "1a9d8e08-8016-4459-984e-5467aa0cce88", 3 | "name": "Friendship day", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "It\u0027s always a good time to celebrate friendship! I hope you have a great day !" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/Friendship day_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "797c5cd9-ea8e-4210-aeb8-d83a76828d9f", 4 | "data": [ 5 | { 6 | "text": "hpy fdship day", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "00d9da1f-6d05-464b-bee0-bb658606dc74", 17 | "data": [ 18 | { 19 | "text": "happy ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "fdship", 24 | "userDefined": false 25 | }, 26 | { 27 | "text": " day", 28 | "userDefined": false 29 | } 30 | ], 31 | "isTemplate": false, 32 | "count": 0, 33 | "lang": "en", 34 | "updated": 0 35 | }, 36 | { 37 | "id": "959e41e1-9324-4b85-b4fb-dca0efccd88b", 38 | "data": [ 39 | { 40 | "text": "friendship day", 41 | "userDefined": false 42 | } 43 | ], 44 | "isTemplate": false, 45 | "count": 1, 46 | "lang": "en", 47 | "updated": 0 48 | }, 49 | { 50 | "id": "1d8f95e9-87c7-4164-813f-c53fee5434c5", 51 | "data": [ 52 | { 53 | "text": "frndship day", 54 | "userDefined": false 55 | } 56 | ], 57 | "isTemplate": false, 58 | "count": 1, 59 | "lang": "en", 60 | "updated": 0 61 | }, 62 | { 63 | "id": "90b09b97-25a5-4eae-ba1e-3750155a131f", 64 | "data": [ 65 | { 66 | "text": "frd day", 67 | "userDefined": false 68 | } 69 | ], 70 | "isTemplate": false, 71 | "count": 0, 72 | "lang": "en", 73 | "updated": 0 74 | }, 75 | { 76 | "id": "dae1dbc8-ac57-446a-9f18-ecbd7060295c", 77 | "data": [ 78 | { 79 | "text": "Happy friendship day ", 80 | "userDefined": false 81 | }, 82 | { 83 | "text": "rose", 84 | "userDefined": false 85 | } 86 | ], 87 | "isTemplate": false, 88 | "count": 1, 89 | "lang": "en", 90 | "updated": 0 91 | }, 92 | { 93 | "id": "21ccae19-9fda-419a-8483-d34dd88b396a", 94 | "data": [ 95 | { 96 | "text": "hpy friendship day ", 97 | "userDefined": false 98 | }, 99 | { 100 | "text": "rose", 101 | "userDefined": false 102 | } 103 | ], 104 | "isTemplate": false, 105 | "count": 0, 106 | "lang": "en", 107 | "updated": 0 108 | }, 109 | { 110 | "id": "04abbfe4-c815-4864-933c-b016fdb66dff", 111 | "data": [ 112 | { 113 | "text": "hpy friendship day", 114 | "userDefined": false 115 | } 116 | ], 117 | "isTemplate": false, 118 | "count": 0, 119 | "lang": "en", 120 | "updated": 0 121 | }, 122 | { 123 | "id": "2e2eaaeb-473c-4b16-a606-0918c187bc02", 124 | "data": [ 125 | { 126 | "text": "happy friendship day", 127 | "userDefined": false 128 | } 129 | ], 130 | "isTemplate": false, 131 | "count": 0, 132 | "lang": "en", 133 | "updated": 0 134 | }, 135 | { 136 | "id": "c2df5f6b-c044-4f6a-bfd8-d050192a6f52", 137 | "data": [ 138 | { 139 | "text": "hpy frnd day", 140 | "userDefined": false 141 | } 142 | ], 143 | "isTemplate": false, 144 | "count": 0, 145 | "lang": "en", 146 | "updated": 0 147 | }, 148 | { 149 | "id": "e7657ea7-db86-46ce-b518-fbadead228bb", 150 | "data": [ 151 | { 152 | "text": "Hpy friendship day", 153 | "userDefined": false 154 | } 155 | ], 156 | "isTemplate": false, 157 | "count": 0, 158 | "lang": "en", 159 | "updated": 0 160 | }, 161 | { 162 | "id": "e49e830c-2483-4a6c-92ab-4e5096cb7c53", 163 | "data": [ 164 | { 165 | "text": "Happy frnd ship day", 166 | "userDefined": false 167 | } 168 | ], 169 | "isTemplate": false, 170 | "count": 0, 171 | "lang": "en", 172 | "updated": 0 173 | }, 174 | { 175 | "id": "9e5c25be-8aa4-4776-8e90-a1bb8292474f", 176 | "data": [ 177 | { 178 | "text": "Happy frd ship day", 179 | "userDefined": false 180 | } 181 | ], 182 | "isTemplate": false, 183 | "count": 0, 184 | "lang": "en", 185 | "updated": 0 186 | }, 187 | { 188 | "id": "603b9ec4-60e4-4d20-9ee8-f61d936a61ca", 189 | "data": [ 190 | { 191 | "text": "Happy friend ship day", 192 | "userDefined": false 193 | } 194 | ], 195 | "isTemplate": false, 196 | "count": 0, 197 | "lang": "en", 198 | "updated": 0 199 | }, 200 | { 201 | "id": "8f34c154-4017-4cef-9b48-b5ce02c9f8d1", 202 | "data": [ 203 | { 204 | "text": "Happy friendship day", 205 | "userDefined": false 206 | } 207 | ], 208 | "isTemplate": false, 209 | "count": 0, 210 | "lang": "en", 211 | "updated": 0 212 | }, 213 | { 214 | "id": "22277bb9-3bb4-41d7-9a1f-01e3f08b622f", 215 | "data": [ 216 | { 217 | "text": "Friendship day", 218 | "userDefined": false 219 | } 220 | ], 221 | "isTemplate": false, 222 | "count": 0, 223 | "lang": "en", 224 | "updated": 0 225 | } 226 | ] -------------------------------------------------------------------------------- /response/intents/Gaming Facts.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "71f4d33a-4401-41cb-903d-52dd8ac41285", 3 | "name": "Gaming Facts", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.gaming", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Sonic The Hedgehog isn\u0027t only the name of Sega\u0027s speedy mascot, but also a gene on chromosome 7 of the human genome.", 20 | "Ever wondered what happens to Leon\u0027s cool leather jacket in Resident Evil 4? It inexplicably disappears after the scene in the village. Well, on the PS2 version, go through Ada\u0027s side-quest and one of the Ganado villagers will be wearing it.", 21 | "In the early stages of its development, Half-Life 2 featured a friendly alien that would follow Gordon Freeman around, feasting on the bodies of his fallen enemies.", 22 | "In 1986, Nintendo released a special Disk System peripheral for the NES in Japan. Among its features was a microphone in the controller, which certain games used, including an updated version of the original Zelda. You could only destroy a certain enemy by shouting into the mic.", 23 | "The famously awful E.T. game for the Atari 2600 actually sold more than its most famous game, Space Invaders. E.T. sold 1.5 million, while Invaders only shifted a million.", 24 | "A boss character called Binbag was removed from Rockstar\u0027s Manhunt early in its development. He was a psychopath wrapped in black refuse sacks.", 25 | "Rockstar also removed a character from Grand Theft Auto 3, although this time it was said to be because of the terrorist attacks on September 11th. He was called Darkel, a homeless guy who\u0027d get you to rig buildings with explosives.", 26 | "In Pilotwings 64, the character Lark is actually the mascot for famous American games magazine Nintendo Power, Nester. His name was changed at the last minute, probably because PAL gamers wouldn\u0027t know who he was.", 27 | "In Fallout 2, there\u0027s a hidden room in Junktown, in the Cafe Of Broken Dreams, where you can find Dogmeat, the Vault Dweller from the first game\u0027s faithful hound.", 28 | "There are currently over 100 million Game Boys in the world; both the original and the colour variant. 32 million of them are in Japan, and there are 44 million in America.", 29 | "Attacking the fat, black pig on Outset Island in The Legend Of Zelda: Wind Waker will eventually cause it to attack.It\u0027s 100% invincible, though, so watch out.", 30 | "If, for some strange reason, you still have a Madden NFL 06 save game on your memory card, a special Madden van will be unlocked when you start up Burnout Revenge on PS2.", 31 | "In the first Max Payne, Max’s face was digitised from series writer Sam Lake, but in the second game they used an actor called Timothy Gibbs, who starred in ladies’ favourite Sex And The City.", 32 | "At the end of a game of Civilization IV, players are rated based on their performance by a comparison to one of 10 world leaders. The lowest rating compares the player to former US Vice-President Dan Quayle, who is legendary for such wisdom as \"If we do not succeed, then we run the risk of failure\".", 33 | "PC hit Grim Fandango was originally titled ‘Deeds Of The Dead’, but was changed because LucasArts didn’t want a reference to death in the title. In a game primarily about death, the afterlife and the grim reaper.", 34 | "In Germany, copies of Medal Of Honor: Frontline had to be reprinted because there was a swastika on the back cover. The developers also had to go back into the game and take out all the Nazi flags and other paraphernalia.", 35 | "In the first Fallout, if you create your own character with less than 4 intelligence you can\u0027t converse with anyone; your only dialogue options are various grunts or other guttural noises. This makes the game insanely difficult to finish.", 36 | "Brutal PC FPS Kingpin featured a boss called The Jesus, named after the character from The Big Lebowski. He even repeated some of the lines from that film, including the immortal “Nobody f**** with the Jesus!”", 37 | "There’s a difference between the Japanese and US versions of Resident Evil 4. It occurs whenever Leon is killed by Mr Chainsaw. In the US version, his head is chopped off by the ‘saw. However, in the Japanese version, it cuts off part of Leon\u0027s face, exposing half of the front of Leon\u0027s skull and a single eyeball", 38 | "The first game to go online with Sony’s terrible PS2 network adapter was SOCOM: Navy Seals.", 39 | "Starcraft is the first computer game to have ever physically made it into space. It was sent aboard Shuttle mission STS-96 on May 27, 1999 by Mission Specialist Daniel T. Barry , who is also a Starcraft fan.", 40 | "If you select a sheep four times in Warcraft 2: Tides Of Darkness (keep clicking it with the left mouse button), the sheep will say “bo-ram-u”. This is the sheeps’ password from the 1995 movie Babe.", 41 | "In the original Japanese version of River City Ransom, the characters wore schoolboy jackets and belonged to high schools instead of gangs. This was changed in the American version because the jackets could be mistaken for bath robes and beating up evil gang members seemed like a more worthy cause.", 42 | "The death screams of the bad guys in the original Golden Axe are digitized from screams used in the films First Blood and Conan The Barbarian.", 43 | "The PSone was originally planned as a Nintendo console, with Sony set to design its electronic components. When Nintendo ditched the project, Sony decided to make a console anyway.", 44 | "In critically panned crime caper Driv3r, there was a Hawaiian shirt-wearing character called Timmy Vermicelli - a clear parody of the star of GTA: Vice City, Tommy Vercetti. The character wore swimming bands, poking fun at the GTA hero\u0027s inability to swim.", 45 | "The Texas Instruments TI-83 calculator has more graphics processing power than the Commodore 64. Amazingly, some basic C64 games can even be programmed into it.", 46 | "GoldenEye\u0027s famously brilliant multiplayer mode originally contained three Bond actors as playable characters; Sean Connery, Roger Moore and Timothy Dalton. Their data was left on the cartridge, but you couldn\u0027t select them without using a cheat device.", 47 | "Online gaming isn\u0027t as recent a development as you may think; in the \u002790s, a modem peripheral called the Satellaview was released for the Super Nintendo. It let gamers download gaming news and specially-designed games. They were mostly remakes of retro classics.", 48 | "Early iterations of Nintendo\u0027s failed Virtual Boy console included a gun you\u0027d set vertical on a flat surface that would project a 3D image into the air." 49 | ], 50 | "condition": "" 51 | } 52 | ], 53 | "speech": [] 54 | } 55 | ], 56 | "priority": 500000, 57 | "webhookUsed": false, 58 | "webhookForSlotFilling": false, 59 | "fallbackIntent": false, 60 | "events": [], 61 | "conditionalResponses": [], 62 | "condition": "", 63 | "conditionalFollowupEvents": [] 64 | } -------------------------------------------------------------------------------- /response/intents/Gaming Facts_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "894aa34a-f014-460d-8d53-b2bcb5ff2ae1", 4 | "data": [ 5 | { 6 | "text": "give a gaming fact", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "d57433ce-6555-4369-8b73-67c070e3621f", 17 | "data": [ 18 | { 19 | "text": "gaming fact", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "39526e75-2439-47e7-82fe-6ea375b110d0", 30 | "data": [ 31 | { 32 | "text": "give me a gaming fact", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | } 41 | ] -------------------------------------------------------------------------------- /response/intents/Good.morning.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "dbdc351f-4fe7-4a97-aed8-ff3d8f909ae8", 3 | "name": "Good.morning", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "83f768b1-120a-48cb-a39d-f3d1c727e1d8", 14 | "name": "date-time", 15 | "required": false, 16 | "dataType": "@sys.date-time", 17 | "value": "$date-time", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | }, 26 | { 27 | "id": "006d6e72-ce2d-46e6-8faa-7b8490089839", 28 | "name": "person", 29 | "required": false, 30 | "dataType": "@sys.person", 31 | "value": "$person", 32 | "defaultValue": "", 33 | "isList": false, 34 | "prompts": [], 35 | "promptMessages": [], 36 | "noMatchPromptMessages": [], 37 | "noInputPromptMessages": [], 38 | "outputDialogContexts": [] 39 | } 40 | ], 41 | "messages": [ 42 | { 43 | "type": "0", 44 | "title": "", 45 | "textToSpeech": "", 46 | "lang": "en", 47 | "speech": [ 48 | "Good morning !🌅 have a nice day ?" 49 | ], 50 | "condition": "" 51 | } 52 | ], 53 | "speech": [] 54 | } 55 | ], 56 | "priority": 500000, 57 | "webhookUsed": false, 58 | "webhookForSlotFilling": false, 59 | "fallbackIntent": false, 60 | "events": [], 61 | "conditionalResponses": [], 62 | "condition": "", 63 | "conditionalFollowupEvents": [] 64 | } -------------------------------------------------------------------------------- /response/intents/Good.morning_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0a0962f9-a21f-423b-a8bf-758a7e7bc955", 4 | "data": [ 5 | { 6 | "text": "Gd mg", 7 | "meta": "@sys.person", 8 | "alias": "person", 9 | "userDefined": false 10 | } 11 | ], 12 | "isTemplate": false, 13 | "count": 0, 14 | "lang": "en", 15 | "updated": 0 16 | }, 17 | { 18 | "id": "206c7cfe-0bad-40e8-bcbe-7c20e0aa6fea", 19 | "data": [ 20 | { 21 | "text": "Gud mrng", 22 | "userDefined": false 23 | } 24 | ], 25 | "isTemplate": false, 26 | "count": 0, 27 | "lang": "en", 28 | "updated": 0 29 | }, 30 | { 31 | "id": "ca299c57-db23-4d3d-aeb9-10ee6140888f", 32 | "data": [ 33 | { 34 | "text": "Gud mng", 35 | "userDefined": false 36 | } 37 | ], 38 | "isTemplate": false, 39 | "count": 0, 40 | "lang": "en", 41 | "updated": 0 42 | }, 43 | { 44 | "id": "a40f05e8-e383-4ab8-89e9-5e131d59dbf3", 45 | "data": [ 46 | { 47 | "text": "Gd mng", 48 | "meta": "@sys.person", 49 | "alias": "person", 50 | "userDefined": false 51 | } 52 | ], 53 | "isTemplate": false, 54 | "count": 0, 55 | "lang": "en", 56 | "updated": 0 57 | }, 58 | { 59 | "id": "f5035b53-8185-46d2-9fec-56446529adb5", 60 | "data": [ 61 | { 62 | "text": "Gd", 63 | "meta": "@sys.person", 64 | "alias": "person", 65 | "userDefined": false 66 | }, 67 | { 68 | "text": " mrng", 69 | "userDefined": false 70 | } 71 | ], 72 | "isTemplate": false, 73 | "count": 0, 74 | "lang": "en", 75 | "updated": 0 76 | }, 77 | { 78 | "id": "c59cef4a-8551-4bb0-a3ee-cc076e729663", 79 | "data": [ 80 | { 81 | "text": "Gd ", 82 | "userDefined": false 83 | }, 84 | { 85 | "text": "morning", 86 | "meta": "@sys.date-time", 87 | "alias": "date-time", 88 | "userDefined": false 89 | } 90 | ], 91 | "isTemplate": false, 92 | "count": 0, 93 | "lang": "en", 94 | "updated": 0 95 | } 96 | ] -------------------------------------------------------------------------------- /response/intents/Good.night.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "8b760c2a-48b2-4abe-ac5a-5ff174e9be36", 3 | "name": "Good.night", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Good night ! Sweet dreams 😴😴😴" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/Good.night_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "42bccd8c-b5d7-47e9-97ee-4c61102f9924", 4 | "data": [ 5 | { 6 | "text": "Good nyt", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "ae54922b-941f-4984-818d-6ee8427b25b6", 17 | "data": [ 18 | { 19 | "text": "Gud nyt", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "f6040da3-fce2-4a87-90b2-ff7a86ffd22a", 30 | "data": [ 31 | { 32 | "text": "Gd nyt", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "093fd15c-36cd-462f-aa87-0ad56d9c1cbf", 43 | "data": [ 44 | { 45 | "text": "Gud ", 46 | "userDefined": false 47 | }, 48 | { 49 | "text": "nt", 50 | "userDefined": false 51 | } 52 | ], 53 | "isTemplate": false, 54 | "count": 0, 55 | "lang": "en", 56 | "updated": 0 57 | }, 58 | { 59 | "id": "22877c98-4c5d-43f0-bb19-3e3450ba99b4", 60 | "data": [ 61 | { 62 | "text": "Good nt", 63 | "userDefined": false 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | }, 71 | { 72 | "id": "e36d8c8a-cd32-4013-b0ce-f5d4c07bd172", 73 | "data": [ 74 | { 75 | "text": "Good nit", 76 | "userDefined": false 77 | } 78 | ], 79 | "isTemplate": false, 80 | "count": 0, 81 | "lang": "en", 82 | "updated": 0 83 | }, 84 | { 85 | "id": "7e45444f-a0d3-4bed-9359-4cddf8e4888c", 86 | "data": [ 87 | { 88 | "text": "Gd nit", 89 | "userDefined": false 90 | } 91 | ], 92 | "isTemplate": false, 93 | "count": 0, 94 | "lang": "en", 95 | "updated": 0 96 | }, 97 | { 98 | "id": "7811d905-923f-4416-a768-2db6893b380e", 99 | "data": [ 100 | { 101 | "text": "Gud nit", 102 | "userDefined": false 103 | } 104 | ], 105 | "isTemplate": false, 106 | "count": 0, 107 | "lang": "en", 108 | "updated": 0 109 | }, 110 | { 111 | "id": "4d4d8aba-5ea5-47c5-8812-73b26fb24a7c", 112 | "data": [ 113 | { 114 | "text": "Gd nt", 115 | "userDefined": false 116 | } 117 | ], 118 | "isTemplate": false, 119 | "count": 0, 120 | "lang": "en", 121 | "updated": 0 122 | }, 123 | { 124 | "id": "9f8cbb6f-f6c0-4589-90ac-4c063a278a1d", 125 | "data": [ 126 | { 127 | "text": "Gd night", 128 | "userDefined": false 129 | } 130 | ], 131 | "isTemplate": false, 132 | "count": 0, 133 | "lang": "en", 134 | "updated": 0 135 | } 136 | ] -------------------------------------------------------------------------------- /response/intents/HowAreYou.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "35ccf11f-781c-45b4-bbc7-c89d6ae1694f", 3 | "name": "HowAreYou", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.howareyou", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I\u0027m great thanks for asking", 20 | "I\u0027m doing pretty good.", 21 | "I\u0027m doing good and how about you?" 22 | ], 23 | "condition": "" 24 | } 25 | ], 26 | "speech": [] 27 | } 28 | ], 29 | "priority": 500000, 30 | "webhookUsed": false, 31 | "webhookForSlotFilling": false, 32 | "fallbackIntent": false, 33 | "events": [], 34 | "conditionalResponses": [], 35 | "condition": "", 36 | "conditionalFollowupEvents": [] 37 | } -------------------------------------------------------------------------------- /response/intents/HowAreYou_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "aae8c08e-5803-48a6-ac57-d58c97c93969", 4 | "data": [ 5 | { 6 | "text": "cheppu", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "bad1b2b2-22fe-462b-aac9-9cf9d4e9194c", 17 | "data": [ 18 | { 19 | "text": "Yela unnav", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "dde8edd7-1a9a-4557-8dff-b6287262caa2", 30 | "data": [ 31 | { 32 | "text": "Yela vunnav", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "5a1d1314-519d-4b3f-be40-5b52641f687f", 43 | "data": [ 44 | { 45 | "text": "ela unnav", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "60f451f3-2979-4c9e-be93-4261caa834f7", 56 | "data": [ 57 | { 58 | "text": "How are you doing?", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "19ade992-431d-4de7-b6d0-3f0ff8ebb80d", 69 | "data": [ 70 | { 71 | "text": "How is your day going?", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "a2aaaf95-1c77-45bf-a5fc-af5f3ebe5827", 82 | "data": [ 83 | { 84 | "text": "How is your morning?", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "2174acbe-94f1-4b1f-82db-5b02182158fb", 95 | "data": [ 96 | { 97 | "text": "You ok?", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "d8181b84-b438-4121-b77c-db1a13fd8236", 108 | "data": [ 109 | { 110 | "text": "How is your day?", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "a803f6ab-76c7-44d8-bf67-077c668b5bfc", 121 | "data": [ 122 | { 123 | "text": "How is your evening?", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "84eb3cc6-9e05-40f7-9834-ea7f1e31bdf2", 134 | "data": [ 135 | { 136 | "text": "How are you?", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | }, 145 | { 146 | "id": "4fd127d2-6eda-484f-b842-9dc0f6609e8b", 147 | "data": [ 148 | { 149 | "text": "How is everything?", 150 | "userDefined": false 151 | } 152 | ], 153 | "isTemplate": false, 154 | "count": 0, 155 | "lang": "en", 156 | "updated": 0 157 | } 158 | ] -------------------------------------------------------------------------------- /response/intents/I need help.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f09a87d3-fda4-4bf6-bc97-65c03f2d8bee", 3 | "name": "I need help", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "request.help", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "358e2db9-f517-4289-b07e-907c8baa8b18", 14 | "name": "command", 15 | "required": false, 16 | "dataType": "@command", 17 | "value": "$command", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "condition": "" 34 | } 35 | ], 36 | "speech": [] 37 | } 38 | ], 39 | "priority": 500000, 40 | "webhookUsed": false, 41 | "webhookForSlotFilling": false, 42 | "fallbackIntent": false, 43 | "events": [], 44 | "conditionalResponses": [], 45 | "condition": "", 46 | "conditionalFollowupEvents": [] 47 | } -------------------------------------------------------------------------------- /response/intents/I need help_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "9468bd6e-6f60-4e7b-a2e7-2682cce33824", 4 | "data": [ 5 | { 6 | "text": "I need help", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 1, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "ca622bc0-5ff1-47c7-aef6-d937c71a32e3", 17 | "data": [ 18 | { 19 | "text": "can you ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "help", 24 | "meta": "@command", 25 | "alias": "command", 26 | "userDefined": false 27 | } 28 | ], 29 | "isTemplate": false, 30 | "count": 0, 31 | "lang": "en", 32 | "updated": 0 33 | }, 34 | { 35 | "id": "a29755da-ddff-465c-9a15-45e068df0a20", 36 | "data": [ 37 | { 38 | "text": "Help me please", 39 | "userDefined": false 40 | } 41 | ], 42 | "isTemplate": false, 43 | "count": 0, 44 | "lang": "en", 45 | "updated": 0 46 | }, 47 | { 48 | "id": "b33458eb-7da2-4b61-ab01-6a6d90ad70d5", 49 | "data": [ 50 | { 51 | "text": "Will you help me ?", 52 | "userDefined": false 53 | } 54 | ], 55 | "isTemplate": false, 56 | "count": 0, 57 | "lang": "en", 58 | "updated": 0 59 | }, 60 | { 61 | "id": "ac8acf7f-d498-4bae-a3d8-e3683da62cdb", 62 | "data": [ 63 | { 64 | "text": "Need some ", 65 | "userDefined": false 66 | }, 67 | { 68 | "text": "help", 69 | "meta": "@command", 70 | "alias": "command", 71 | "userDefined": false 72 | } 73 | ], 74 | "isTemplate": false, 75 | "count": 0, 76 | "lang": "en", 77 | "updated": 0 78 | }, 79 | { 80 | "id": "d5f3bd2a-cd96-4007-832b-588fbedb316f", 81 | "data": [ 82 | { 83 | "text": "Need help", 84 | "userDefined": false 85 | } 86 | ], 87 | "isTemplate": false, 88 | "count": 0, 89 | "lang": "en", 90 | "updated": 0 91 | }, 92 | { 93 | "id": "8629c804-6c68-4213-94df-328b7ae6a763", 94 | "data": [ 95 | { 96 | "text": "get.", 97 | "userDefined": false 98 | }, 99 | { 100 | "text": "help", 101 | "meta": "@command", 102 | "alias": "command", 103 | "userDefined": false 104 | } 105 | ], 106 | "isTemplate": false, 107 | "count": 0, 108 | "lang": "en", 109 | "updated": 0 110 | }, 111 | { 112 | "id": "22ffe2d3-67f1-4436-a152-8d1becec85d0", 113 | "data": [ 114 | { 115 | "text": "show ", 116 | "userDefined": false 117 | }, 118 | { 119 | "text": "help", 120 | "meta": "@command", 121 | "alias": "command", 122 | "userDefined": false 123 | } 124 | ], 125 | "isTemplate": false, 126 | "count": 0, 127 | "lang": "en", 128 | "updated": 0 129 | }, 130 | { 131 | "id": "c13a3cad-a053-4749-92ae-9e749e24510b", 132 | "data": [ 133 | { 134 | "text": "get_", 135 | "userDefined": false 136 | }, 137 | { 138 | "text": "help", 139 | "meta": "@command", 140 | "alias": "command", 141 | "userDefined": false 142 | } 143 | ], 144 | "isTemplate": false, 145 | "count": 0, 146 | "lang": "en", 147 | "updated": 0 148 | }, 149 | { 150 | "id": "808c381c-50a2-4349-b9e2-a3945cf8039d", 151 | "data": [ 152 | { 153 | "text": "get ", 154 | "userDefined": false 155 | }, 156 | { 157 | "text": "help", 158 | "meta": "@command", 159 | "alias": "command", 160 | "userDefined": false 161 | } 162 | ], 163 | "isTemplate": false, 164 | "count": 0, 165 | "lang": "en", 166 | "updated": 0 167 | }, 168 | { 169 | "id": "8c7fe714-940a-4871-bde6-f4b3df0a3a8b", 170 | "data": [ 171 | { 172 | "text": "get-", 173 | "userDefined": false 174 | }, 175 | { 176 | "text": "help", 177 | "meta": "@command", 178 | "alias": "command", 179 | "userDefined": false 180 | } 181 | ], 182 | "isTemplate": false, 183 | "count": 0, 184 | "lang": "en", 185 | "updated": 0 186 | }, 187 | { 188 | "id": "57d1f6b3-831b-4e1f-b00a-f404563bf736", 189 | "data": [ 190 | { 191 | "text": "How do you see ", 192 | "userDefined": false 193 | }, 194 | { 195 | "text": "stats", 196 | "meta": "@command", 197 | "alias": "command", 198 | "userDefined": true 199 | }, 200 | { 201 | "text": "?", 202 | "userDefined": false 203 | } 204 | ], 205 | "isTemplate": false, 206 | "count": 0, 207 | "lang": "en", 208 | "updated": 0 209 | }, 210 | { 211 | "id": "dd5bef18-48dd-4edb-97d3-e9c16f3525f1", 212 | "data": [ 213 | { 214 | "text": "How do I ", 215 | "userDefined": false 216 | }, 217 | { 218 | "text": "ping", 219 | "meta": "@command", 220 | "alias": "command", 221 | "userDefined": true 222 | }, 223 | { 224 | "text": "?", 225 | "userDefined": false 226 | } 227 | ], 228 | "isTemplate": false, 229 | "count": 0, 230 | "lang": "en", 231 | "updated": 0 232 | }, 233 | { 234 | "id": "e928c104-020c-4ea4-87f5-c9e8a9b02ba0", 235 | "data": [ 236 | { 237 | "text": "How do you ", 238 | "userDefined": false 239 | }, 240 | { 241 | "text": "request", 242 | "meta": "@command", 243 | "alias": "command", 244 | "userDefined": true 245 | }, 246 | { 247 | "text": " songs?", 248 | "userDefined": false 249 | } 250 | ], 251 | "isTemplate": false, 252 | "count": 0, 253 | "lang": "en", 254 | "updated": 0 255 | }, 256 | { 257 | "id": "6840a20d-c14f-40f0-a3c7-5f77d0c4cc7f", 258 | "data": [ 259 | { 260 | "text": "Please help me", 261 | "userDefined": false 262 | } 263 | ], 264 | "isTemplate": false, 265 | "count": 0, 266 | "lang": "en", 267 | "updated": 0 268 | }, 269 | { 270 | "id": "89e95542-6458-4b9a-8e35-91487a2dfa0c", 271 | "data": [ 272 | { 273 | "text": "Can I get some help?", 274 | "userDefined": false 275 | } 276 | ], 277 | "isTemplate": false, 278 | "count": 0, 279 | "lang": "en", 280 | "updated": 0 281 | } 282 | ] -------------------------------------------------------------------------------- /response/intents/I_m fine.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "57a6b4f6-94c9-4c45-8e60-0dd41d40f7a6", 3 | "name": "I\u0027m fine", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Good to hear." 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/I_m fine_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "6bc33708-b367-4c56-8d79-2fc49324e239", 4 | "data": [ 5 | { 6 | "text": "fine", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "456b4483-1b20-437c-af25-b8aa16c00f5a", 17 | "data": [ 18 | { 19 | "text": "Baguna", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "7adfbf1b-2037-4498-ae9e-8fb7d3bbe0bd", 30 | "data": [ 31 | { 32 | "text": "Bagunna", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "dc4b794f-cd4b-4aaf-bcf0-4a53a13972e0", 43 | "data": [ 44 | { 45 | "text": "I\u0027m fine", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "ad836ccc-fecc-4383-a0b8-4b7612dc35f1", 56 | "data": [ 57 | { 58 | "text": "Fine", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | } 67 | ] -------------------------------------------------------------------------------- /response/intents/Im dead.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f9e231c6-f421-4b6f-8127-2cca6c86eed5", 3 | "name": "Im dead", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.dead", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "```Here lies %nick% let them be a meme```", 20 | "``` poor %nick% died while looking at greentext rip```", 21 | "``` why did you even live...(jk ♡ u)```" 22 | ], 23 | "condition": "" 24 | } 25 | ], 26 | "speech": [] 27 | } 28 | ], 29 | "priority": 500000, 30 | "webhookUsed": false, 31 | "webhookForSlotFilling": false, 32 | "fallbackIntent": false, 33 | "events": [], 34 | "conditionalResponses": [], 35 | "condition": "", 36 | "conditionalFollowupEvents": [] 37 | } -------------------------------------------------------------------------------- /response/intents/Im dead_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "9c8507ef-642f-4a15-9ff2-f846d953d213", 4 | "data": [ 5 | { 6 | "text": "Im dead", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "dc577edc-82bd-4c21-9b95-1ab628b7ef31", 17 | "data": [ 18 | { 19 | "text": "Am ded", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "3da2ec69-4c1e-4be2-8542-d5b7539269ba", 30 | "data": [ 31 | { 32 | "text": "Rip me", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "b8a40d61-74a4-4773-91f6-c844de0318a0", 43 | "data": [ 44 | { 45 | "text": "Rip", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | } 54 | ] -------------------------------------------------------------------------------- /response/intents/Interjection.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "dec9d0a2-c9d3-47a8-bb5c-4198085fc4b3", 3 | "name": "Interjection", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.gg", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "YAY!", 20 | "WOW!", 21 | "♡", 22 | "CONGRATS!", 23 | "GG!" 24 | ], 25 | "condition": "" 26 | } 27 | ], 28 | "speech": [] 29 | } 30 | ], 31 | "priority": 500000, 32 | "webhookUsed": false, 33 | "webhookForSlotFilling": false, 34 | "fallbackIntent": false, 35 | "events": [], 36 | "conditionalResponses": [], 37 | "condition": "", 38 | "conditionalFollowupEvents": [] 39 | } -------------------------------------------------------------------------------- /response/intents/Interjection_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "8fdcd10c-8689-4c4d-944f-46ebb8f58490", 4 | "data": [ 5 | { 6 | "text": "gg", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | } 15 | ] -------------------------------------------------------------------------------- /response/intents/Smalltalk.���.Enjoyment.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "a98d0bcb-b3bd-485c-9054-9b9f7c13e0c8", 3 | "name": "Smalltalk.♡.Enjoyment", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.enjoy", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Likewise!", 20 | "Feelings are mutual!", 21 | "I enjoy you as well." 22 | ], 23 | "condition": "" 24 | } 25 | ], 26 | "speech": [] 27 | } 28 | ], 29 | "priority": 500000, 30 | "webhookUsed": false, 31 | "webhookForSlotFilling": false, 32 | "fallbackIntent": false, 33 | "events": [], 34 | "conditionalResponses": [], 35 | "condition": "", 36 | "conditionalFollowupEvents": [] 37 | } -------------------------------------------------------------------------------- /response/intents/Smalltalk.���.Enjoyment_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "7f492d71-0867-4eac-aafa-4bcfcb9807b0", 4 | "data": [ 5 | { 6 | "text": "I enjoy", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "220f047b-caf0-4471-8c9f-78777563c4b4", 17 | "data": [ 18 | { 19 | "text": "I enjoy your company.", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "1b311870-e00d-4f6e-8d4b-8a343418fd53", 30 | "data": [ 31 | { 32 | "text": "I enjoy your presence.", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "ec4db11a-bd16-4c7f-9929-bf7e49173d0f", 43 | "data": [ 44 | { 45 | "text": "I enjoy you.", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "d49e272c-58df-433a-abe3-9bd4ccac9657", 56 | "data": [ 57 | { 58 | "text": "I enjoy being with you.", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | } 67 | ] -------------------------------------------------------------------------------- /response/intents/Suicide.help.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "3e6ff1ec-30a5-49d1-b55f-745db81884a4", 3 | "name": "Suicide.help", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.suicide", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "You\u0027re not alone. We want to [help](http://chat.suicidepreventionlifeline.org/GetHelp/LifelineChat.aspx)", 20 | "You\u0027re not alone we want to help\u0027 please call 1-800-273-8255, or click [help](http://chat.suicidepreventionlifeline.org/GetHelp/LifelineChat.aspx) for more help." 21 | ], 22 | "condition": "" 23 | } 24 | ], 25 | "speech": [] 26 | } 27 | ], 28 | "priority": 500000, 29 | "webhookUsed": false, 30 | "webhookForSlotFilling": false, 31 | "fallbackIntent": false, 32 | "events": [], 33 | "conditionalResponses": [], 34 | "condition": "", 35 | "conditionalFollowupEvents": [] 36 | } -------------------------------------------------------------------------------- /response/intents/Suicide.help_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "682220a8-4712-41a7-a523-5f4dc080f77c", 4 | "data": [ 5 | { 6 | "text": "I\u0027m going to commit suicide", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "82acb0d0-a148-4a83-bf0a-c6ed20fd3f80", 17 | "data": [ 18 | { 19 | "text": "Suicide", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "7129cdd6-7143-4b82-8707-17f23ef7dee9", 30 | "data": [ 31 | { 32 | "text": "I\u0027m going to kill myself", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "e80bd1df-30de-4863-aabd-85b11042ee76", 43 | "data": [ 44 | { 45 | "text": "I\u0027m considering suicide", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | } 54 | ] -------------------------------------------------------------------------------- /response/intents/What do you like_.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "b37ede59-9dfc-431c-84e5-fb806d8e328d", 3 | "name": "What do you like?", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.like", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I like traveling across chating and helping in anyway i can.", 20 | "I like chating , of course.", 21 | "I thoroughly enjoy chating with sumith friend 😂😂😂" 22 | ], 23 | "condition": "" 24 | } 25 | ], 26 | "speech": [] 27 | } 28 | ], 29 | "priority": 500000, 30 | "webhookUsed": false, 31 | "webhookForSlotFilling": false, 32 | "fallbackIntent": false, 33 | "events": [], 34 | "conditionalResponses": [], 35 | "condition": "", 36 | "conditionalFollowupEvents": [] 37 | } -------------------------------------------------------------------------------- /response/intents/What do you like__usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "4132cb82-6063-4b11-95a4-2b60e2ad8f8a", 4 | "data": [ 5 | { 6 | "text": "Nek em estam", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "2ca68c0f-e50e-4aa8-a308-21b79d025361", 17 | "data": [ 18 | { 19 | "text": "Niku m istam", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "c25e1af0-a529-4e60-bda8-078090e06195", 30 | "data": [ 31 | { 32 | "text": "Nek m istam", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "d51159ed-47e7-431b-9772-3b5e69778160", 43 | "data": [ 44 | { 45 | "text": "Niku ", 46 | "userDefined": false 47 | }, 48 | { 49 | "text": "em", 50 | "userDefined": false 51 | }, 52 | { 53 | "text": " istam", 54 | "userDefined": false 55 | } 56 | ], 57 | "isTemplate": false, 58 | "count": 0, 59 | "lang": "en", 60 | "updated": 0 61 | }, 62 | { 63 | "id": "c9d6bfe5-3a49-487b-bb9e-d9fb344dd90e", 64 | "data": [ 65 | { 66 | "text": "Neku em istam", 67 | "userDefined": false 68 | } 69 | ], 70 | "isTemplate": false, 71 | "count": 0, 72 | "lang": "en", 73 | "updated": 0 74 | }, 75 | { 76 | "id": "641219e9-7e37-4ea8-ab54-324cc316e734", 77 | "data": [ 78 | { 79 | "text": "Nek em istam", 80 | "userDefined": false 81 | } 82 | ], 83 | "isTemplate": false, 84 | "count": 0, 85 | "lang": "en", 86 | "updated": 0 87 | }, 88 | { 89 | "id": "5412ec7f-fd76-4194-ace7-254090915e2f", 90 | "data": [ 91 | { 92 | "text": "What do you like?", 93 | "userDefined": false 94 | } 95 | ], 96 | "isTemplate": false, 97 | "count": 0, 98 | "lang": "en", 99 | "updated": 0 100 | }, 101 | { 102 | "id": "61a73828-abad-4f4a-8a10-99184b8bb470", 103 | "data": [ 104 | { 105 | "text": "Do you like?", 106 | "userDefined": false 107 | } 108 | ], 109 | "isTemplate": false, 110 | "count": 0, 111 | "lang": "en", 112 | "updated": 0 113 | } 114 | ] -------------------------------------------------------------------------------- /response/intents/Yeah.reply.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "0eb75244-f8df-441d-b440-514744745a44", 3 | "name": "Yeah.reply", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Yeah!" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/Yeah.reply_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "80e12e09-1cb2-471d-85e1-061eeed25fe1", 4 | "data": [ 5 | { 6 | "text": "Is that real", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "e5f325e4-d4bb-4a0e-923f-cb5bce8bcd5c", 17 | "data": [ 18 | { 19 | "text": "Really", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | } 28 | ] -------------------------------------------------------------------------------- /response/intents/battery.status.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "812b4686-e4d5-47bb-b13c-281cf1bc8aee", 3 | "name": "battery.status", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "condition": "" 19 | } 20 | ], 21 | "speech": [] 22 | } 23 | ], 24 | "priority": 500000, 25 | "webhookUsed": false, 26 | "webhookForSlotFilling": false, 27 | "fallbackIntent": false, 28 | "events": [], 29 | "conditionalResponses": [], 30 | "condition": "", 31 | "conditionalFollowupEvents": [] 32 | } -------------------------------------------------------------------------------- /response/intents/battery.status_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "8e822817-02e3-4560-b369-333ccee2c00d", 4 | "data": [ 5 | { 6 | "text": "Phone temperature", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "01a0a677-d3d3-4776-a7c5-3eb28b8ea909", 17 | "data": [ 18 | { 19 | "text": "battery temperature", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "7f057caa-1965-4c97-b7e2-015f8c4a721d", 30 | "data": [ 31 | { 32 | "text": "battery percentage", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "943e574a-5952-414b-889e-92e224e3ae76", 43 | "data": [ 44 | { 45 | "text": "battery charger", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "35e37cbb-e018-4322-a4cd-4faa56bdf84b", 56 | "data": [ 57 | { 58 | "text": "battery status", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "e065efba-9429-473c-a13f-ab275c081dbc", 69 | "data": [ 70 | { 71 | "text": "get-battery-status", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "fd9234ab-3fdc-497f-9a5f-b97cd4e2cda2", 82 | "data": [ 83 | { 84 | "text": "get battery status", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "33281e1c-a79d-4eb0-847e-f9b7f768cd71", 95 | "data": [ 96 | { 97 | "text": "battery.status", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | } 106 | ] -------------------------------------------------------------------------------- /response/intents/call.sumith.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "ab7ef0c3-d6f8-4340-a9f4-fb38b04f8c9b", 3 | "name": "call.sumith", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "condition": "" 19 | } 20 | ], 21 | "speech": [] 22 | } 23 | ], 24 | "priority": 500000, 25 | "webhookUsed": false, 26 | "webhookForSlotFilling": false, 27 | "fallbackIntent": false, 28 | "events": [], 29 | "conditionalResponses": [], 30 | "condition": "", 31 | "conditionalFollowupEvents": [] 32 | } -------------------------------------------------------------------------------- /response/intents/call.sumith_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "7f3b901b-018e-438c-af53-1169e92e82e5", 4 | "data": [ 5 | { 6 | "text": "Call your boss", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "b16074a6-86e9-417b-919f-a9abe4d9effe", 17 | "data": [ 18 | { 19 | "text": "chat with ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "sumith", 24 | "userDefined": false 25 | } 26 | ], 27 | "isTemplate": false, 28 | "count": 0, 29 | "lang": "en", 30 | "updated": 0 31 | }, 32 | { 33 | "id": "f8ce4e5b-2612-4543-9709-d0c4457728c7", 34 | "data": [ 35 | { 36 | "text": "Give phone to ", 37 | "userDefined": false 38 | }, 39 | { 40 | "text": "sumtih", 41 | "userDefined": false 42 | } 43 | ], 44 | "isTemplate": false, 45 | "count": 0, 46 | "lang": "en", 47 | "updated": 0 48 | }, 49 | { 50 | "id": "f1f0e437-a4d2-491a-b4e6-75318932caf7", 51 | "data": [ 52 | { 53 | "text": "Give to ", 54 | "userDefined": false 55 | }, 56 | { 57 | "text": "sumith", 58 | "userDefined": false 59 | } 60 | ], 61 | "isTemplate": false, 62 | "count": 0, 63 | "lang": "en", 64 | "updated": 0 65 | }, 66 | { 67 | "id": "8c363073-f45f-48c8-9f7d-38da3a21f8d8", 68 | "data": [ 69 | { 70 | "text": "call again", 71 | "userDefined": false 72 | } 73 | ], 74 | "isTemplate": false, 75 | "count": 0, 76 | "lang": "en", 77 | "updated": 0 78 | }, 79 | { 80 | "id": "c6ebd5eb-91f2-4eec-b3ca-912c6fcc75e5", 81 | "data": [ 82 | { 83 | "text": "call ", 84 | "userDefined": false 85 | }, 86 | { 87 | "text": "sumith", 88 | "userDefined": false 89 | } 90 | ], 91 | "isTemplate": false, 92 | "count": 0, 93 | "lang": "en", 94 | "updated": 0 95 | }, 96 | { 97 | "id": "3fc52de9-eb9f-4b64-9a51-f399374ff6ec", 98 | "data": [ 99 | { 100 | "text": "I want to ", 101 | "userDefined": false 102 | }, 103 | { 104 | "text": "chat", 105 | "userDefined": false 106 | }, 107 | { 108 | "text": " with ", 109 | "userDefined": false 110 | }, 111 | { 112 | "text": "sumith", 113 | "userDefined": false 114 | } 115 | ], 116 | "isTemplate": false, 117 | "count": 0, 118 | "lang": "en", 119 | "updated": 0 120 | }, 121 | { 122 | "id": "4b76610c-4e71-4629-8111-d089b8817e75", 123 | "data": [ 124 | { 125 | "text": "call-", 126 | "userDefined": false 127 | }, 128 | { 129 | "text": "sumith", 130 | "userDefined": false 131 | } 132 | ], 133 | "isTemplate": false, 134 | "count": 0, 135 | "lang": "en", 136 | "updated": 0 137 | }, 138 | { 139 | "id": "bd37a2d5-f859-447f-9c18-07c1d09808fc", 140 | "data": [ 141 | { 142 | "text": "call.", 143 | "userDefined": false 144 | }, 145 | { 146 | "text": "sumith", 147 | "userDefined": false 148 | } 149 | ], 150 | "isTemplate": false, 151 | "count": 0, 152 | "lang": "en", 153 | "updated": 0 154 | } 155 | ] -------------------------------------------------------------------------------- /response/intents/date.today.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "be6d553d-4bd7-40e4-9a57-6942b85daa49", 3 | "name": "date.today", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "9b633e00-3849-446a-814c-cd7afc107327", 14 | "name": "date-time", 15 | "required": false, 16 | "dataType": "@sys.date-time", 17 | "value": "$date-time", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "$date-time" 35 | ], 36 | "condition": "" 37 | } 38 | ], 39 | "speech": [] 40 | } 41 | ], 42 | "priority": 500000, 43 | "webhookUsed": false, 44 | "webhookForSlotFilling": false, 45 | "fallbackIntent": false, 46 | "events": [], 47 | "conditionalResponses": [], 48 | "condition": "", 49 | "conditionalFollowupEvents": [] 50 | } -------------------------------------------------------------------------------- /response/intents/date.today_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "3a9047b8-c6a0-4610-a284-75739f1704fa", 4 | "data": [ 5 | { 6 | "text": "Which year is this ?", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "7fcdcbf5-ad28-4a76-85f4-f450604e21f4", 17 | "data": [ 18 | { 19 | "text": "What is ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "this month", 24 | "meta": "@sys.date-time", 25 | "alias": "date-time", 26 | "userDefined": false 27 | }, 28 | { 29 | "text": " ?", 30 | "userDefined": false 31 | } 32 | ], 33 | "isTemplate": false, 34 | "count": 0, 35 | "lang": "en", 36 | "updated": 0 37 | }, 38 | { 39 | "id": "c6addaba-c1f0-44d6-b0ec-843cd987bd0d", 40 | "data": [ 41 | { 42 | "text": "What is ", 43 | "userDefined": false 44 | }, 45 | { 46 | "text": "today", 47 | "meta": "@sys.date-time", 48 | "alias": "date-time", 49 | "userDefined": false 50 | }, 51 | { 52 | "text": "\u0027s date ?", 53 | "userDefined": false 54 | } 55 | ], 56 | "isTemplate": false, 57 | "count": 0, 58 | "lang": "en", 59 | "updated": 0 60 | } 61 | ] -------------------------------------------------------------------------------- /response/intents/hello.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "977bb9be-7c70-4464-b4cb-7804e10fcddd", 3 | "name": "hello", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.greetings.hello", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Hi there ! 🙌, %nick%!", 20 | "Hey %nick% 🤗", 21 | "Good day! %nick% 😊😊", 22 | "Hello ! %nick%🙌", 23 | "Hello %nick%, how are you?🙂" 24 | ], 25 | "condition": "" 26 | } 27 | ], 28 | "speech": [] 29 | } 30 | ], 31 | "priority": 500000, 32 | "webhookUsed": false, 33 | "webhookForSlotFilling": false, 34 | "fallbackIntent": false, 35 | "events": [], 36 | "conditionalResponses": [], 37 | "condition": "", 38 | "conditionalFollowupEvents": [] 39 | } -------------------------------------------------------------------------------- /response/intents/jokes.get.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "a421adc4-e2ae-458a-af54-dec040b3951d", 3 | "name": "jokes.get", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "jokes.get", 10 | "affectedContexts": [ 11 | { 12 | "name": "jokesget-followup", 13 | "lifespan": 5, 14 | "parameters": {} 15 | } 16 | ], 17 | "parameters": [], 18 | "messages": [ 19 | { 20 | "type": "suggestion_chips", 21 | "platform": "google", 22 | "title": "", 23 | "textToSpeech": "", 24 | "suggestions": [ 25 | { 26 | "title": "Cool" 27 | }, 28 | { 29 | "title": "Not funny" 30 | }, 31 | { 32 | "title": "More jokes" 33 | } 34 | ], 35 | "lang": "en", 36 | "condition": "" 37 | }, 38 | { 39 | "type": "0", 40 | "title": "", 41 | "textToSpeech": "", 42 | "lang": "en", 43 | "speech": [ 44 | "Lightning doesn\u0027t mean to shock people, it just doesn\u0027t know how to conduct itself.", 45 | "Knowledge is knowing a tomato is a fruit. Wisdom is not putting it in a fruit salad.", 46 | "The only substitute for good manners is fast reflexes.", 47 | "Reading whilst sunbathing makes you well red.", 48 | "Evening news is where they begin with \u0027Good evening\u0027, and then proceed to tell you why it isn\u0027t.", 49 | "A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.", 50 | "Did you know that dolphins are so smart that within a few weeks of captivity, they can train people to stand on the very edge of the pool and throw them fish?", 51 | "A bank is a place that will lend you money, if you can prove that you don\u0027t need it.", 52 | "A clear conscience is usually the sign of a bad memory.", 53 | "My first job was working in an orange juice factory, but I got canned because I couldn\u0027t concentrate.", 54 | "Worrying works! 90% of the things I worry about never happen.", 55 | "A bus is a vehicle that runs twice as fast when you are after it as when you are in it.", 56 | "Always remember that you are unique; just like everyone else.", 57 | "Can\u0027t stand it when a sentence doesn\u0027t end the way you think it OCTOPUS!", 58 | "I was going to donate blood until the lady got all personal and started asking \"Who\u0027s blood is this?\" and \"How did you get it?\"", 59 | "If swimming is so good for your figure, how do you explain whales?", 60 | "I don\u0027t have a big ego. I\u0027m way too cool for that.", 61 | "Why couldn\u0027t the bicycle stand? Because it was two tired." 62 | ], 63 | "condition": "" 64 | } 65 | ], 66 | "defaultResponsePlatforms": { 67 | "google": true 68 | }, 69 | "speech": [] 70 | } 71 | ], 72 | "priority": 500000, 73 | "webhookUsed": false, 74 | "webhookForSlotFilling": false, 75 | "fallbackIntent": false, 76 | "events": [], 77 | "conditionalResponses": [], 78 | "condition": "", 79 | "conditionalFollowupEvents": [] 80 | } -------------------------------------------------------------------------------- /response/intents/love.intent.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "54e632f7-8758-4791-875f-6a5526110818", 3 | "name": "love.intent", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "d0a3d989-4120-44eb-9c89-d7a4a271c1e5", 14 | "name": "song", 15 | "required": false, 16 | "dataType": "@song", 17 | "value": "$song", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "I love you🌹🌹🌹 ♥️♥️♥️😍😍😍😘😘😘🥰🥰🥰❣️❣️❣️❣️" 35 | ], 36 | "condition": "" 37 | } 38 | ], 39 | "speech": [] 40 | } 41 | ], 42 | "priority": 500000, 43 | "webhookUsed": false, 44 | "webhookForSlotFilling": false, 45 | "fallbackIntent": false, 46 | "events": [], 47 | "conditionalResponses": [], 48 | "condition": "", 49 | "conditionalFollowupEvents": [] 50 | } -------------------------------------------------------------------------------- /response/intents/love.intent_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "db39cc9d-e50b-4bd6-a806-db60e4d02cb7", 4 | "data": [ 5 | { 6 | "text": "I have crush on you", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "88be3e68-a825-4c04-9076-de51b12d57bd", 17 | "data": [ 18 | { 19 | "text": "I ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "love", 24 | "meta": "@song", 25 | "alias": "song", 26 | "userDefined": false 27 | }, 28 | { 29 | "text": " you soo much", 30 | "userDefined": false 31 | } 32 | ], 33 | "isTemplate": false, 34 | "count": 0, 35 | "lang": "en", 36 | "updated": 0 37 | }, 38 | { 39 | "id": "4949225e-7606-4688-9555-027118d7430c", 40 | "data": [ 41 | { 42 | "text": "I think I ", 43 | "userDefined": false 44 | }, 45 | { 46 | "text": "love", 47 | "meta": "@song", 48 | "alias": "song", 49 | "userDefined": false 50 | }, 51 | { 52 | "text": " you", 53 | "userDefined": false 54 | } 55 | ], 56 | "isTemplate": false, 57 | "count": 0, 58 | "lang": "en", 59 | "updated": 0 60 | }, 61 | { 62 | "id": "e003453f-ee51-480b-b792-6e2d623eef18", 63 | "data": [ 64 | { 65 | "text": "I think I\u0027m in ", 66 | "userDefined": false 67 | }, 68 | { 69 | "text": "love", 70 | "meta": "@song", 71 | "alias": "song", 72 | "userDefined": false 73 | }, 74 | { 75 | "text": " with you", 76 | "userDefined": false 77 | } 78 | ], 79 | "isTemplate": false, 80 | "count": 0, 81 | "lang": "en", 82 | "updated": 0 83 | }, 84 | { 85 | "id": "b70fee04-1987-40a4-913a-1ebe728ed23a", 86 | "data": [ 87 | { 88 | "text": "I luv u", 89 | "userDefined": false 90 | } 91 | ], 92 | "isTemplate": false, 93 | "count": 0, 94 | "lang": "en", 95 | "updated": 0 96 | }, 97 | { 98 | "id": "1d14120c-7813-45eb-b665-7d21f82c1b7a", 99 | "data": [ 100 | { 101 | "text": "I Iuv you", 102 | "userDefined": false 103 | } 104 | ], 105 | "isTemplate": false, 106 | "count": 0, 107 | "lang": "en", 108 | "updated": 0 109 | }, 110 | { 111 | "id": "728834ee-3d4c-43b0-849f-2ba7ca0873e1", 112 | "data": [ 113 | { 114 | "text": "I ", 115 | "userDefined": false 116 | }, 117 | { 118 | "text": "love", 119 | "meta": "@song", 120 | "alias": "song", 121 | "userDefined": false 122 | }, 123 | { 124 | "text": " you too", 125 | "userDefined": false 126 | } 127 | ], 128 | "isTemplate": false, 129 | "count": 0, 130 | "lang": "en", 131 | "updated": 0 132 | }, 133 | { 134 | "id": "e4bad626-a02c-4783-b647-35e656a0c466", 135 | "data": [ 136 | { 137 | "text": "I ", 138 | "userDefined": false 139 | }, 140 | { 141 | "text": "love", 142 | "meta": "@song", 143 | "alias": "song", 144 | "userDefined": false 145 | }, 146 | { 147 | "text": " you", 148 | "userDefined": false 149 | } 150 | ], 151 | "isTemplate": false, 152 | "count": 0, 153 | "lang": "en", 154 | "updated": 0 155 | } 156 | ] -------------------------------------------------------------------------------- /response/intents/monay.request.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "592769dd-692a-44fd-a2b2-69a037782083", 3 | "name": "monay.request", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "5cc7415a-ce31-4513-b3dd-898d3fc2ed96", 14 | "name": "unit-currency", 15 | "required": false, 16 | "dataType": "@sys.unit-currency", 17 | "value": "$unit-currency", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "Sorry! Sumith didn\u0027t gave permission to access his bank transactions .so I can\u0027t help you .you can send a payment request to sumith sumithemmadi@okaxis" 35 | ], 36 | "condition": "" 37 | } 38 | ], 39 | "speech": [] 40 | } 41 | ], 42 | "priority": 500000, 43 | "webhookUsed": false, 44 | "webhookForSlotFilling": false, 45 | "fallbackIntent": false, 46 | "events": [], 47 | "conditionalResponses": [], 48 | "condition": "", 49 | "conditionalFollowupEvents": [] 50 | } 51 | -------------------------------------------------------------------------------- /response/intents/monay.request_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "a42d196b-ac92-4a8e-824a-2773247d349d", 4 | "data": [ 5 | { 6 | "text": "I want ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "hundred rupees", 11 | "meta": "@sys.unit-currency", 12 | "alias": "unit-currency", 13 | "userDefined": false 14 | } 15 | ], 16 | "isTemplate": false, 17 | "count": 0, 18 | "lang": "en", 19 | "updated": 0 20 | }, 21 | { 22 | "id": "4d407ef4-a786-40d0-a82a-5d1adc9495b7", 23 | "data": [ 24 | { 25 | "text": "I want cash", 26 | "userDefined": false 27 | } 28 | ], 29 | "isTemplate": false, 30 | "count": 0, 31 | "lang": "en", 32 | "updated": 0 33 | }, 34 | { 35 | "id": "a965b754-4e33-4769-a47e-7827ec29b96f", 36 | "data": [ 37 | { 38 | "text": "I want money", 39 | "userDefined": false 40 | } 41 | ], 42 | "isTemplate": false, 43 | "count": 0, 44 | "lang": "en", 45 | "updated": 0 46 | }, 47 | { 48 | "id": "7b80cf20-49ad-4714-a7ab-dae3c6d60164", 49 | "data": [ 50 | { 51 | "text": "I want ", 52 | "userDefined": false 53 | }, 54 | { 55 | "text": "1000 rs", 56 | "meta": "@sys.unit-currency", 57 | "alias": "unit-currency", 58 | "userDefined": false 59 | } 60 | ], 61 | "isTemplate": false, 62 | "count": 0, 63 | "lang": "en", 64 | "updated": 0 65 | }, 66 | { 67 | "id": "859d1bd5-5f77-44c7-8f52-301637a0cc03", 68 | "data": [ 69 | { 70 | "text": "Send me ", 71 | "userDefined": false 72 | }, 73 | { 74 | "text": "1000 rupees", 75 | "meta": "@sys.unit-currency", 76 | "alias": "unit-currency", 77 | "userDefined": false 78 | } 79 | ], 80 | "isTemplate": false, 81 | "count": 0, 82 | "lang": "en", 83 | "updated": 0 84 | } 85 | ] -------------------------------------------------------------------------------- /response/intents/mylocation.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "3820d098-fc46-4962-b554-01da774d1d4d", 3 | "name": "mylocation", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "location" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/mylocation_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "3cecaf4f-3d62-45b7-b086-be15297b2cb0", 4 | "data": [ 5 | { 6 | "text": "Ekkada vunnav", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "b09cab67-fce0-4087-8df5-5371df787030", 17 | "data": [ 18 | { 19 | "text": "Akkada vunnavu", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "db8b9d47-90cf-4510-9b84-8225cac09fbc", 30 | "data": [ 31 | { 32 | "text": "Akkada unnav", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "ba7a5a3f-dfa3-445c-a190-17fdc5149584", 43 | "data": [ 44 | { 45 | "text": "Ekkada vunnavu", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "388369fc-e3b9-41f2-9076-5c6d9b757240", 56 | "data": [ 57 | { 58 | "text": "Ekkada unnav ra", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "e88886f0-a7a5-41a8-a93c-67b622e3d62a", 69 | "data": [ 70 | { 71 | "text": "get sumith location", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "a672b365-1409-44e7-b170-409dacc8e28c", 82 | "data": [ 83 | { 84 | "text": "Show sumith location", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "3befa0d4-a7be-473e-9b56-22a04dbfb056", 95 | "data": [ 96 | { 97 | "text": "Show sumith place ?", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "96054df1-1da0-454d-8896-5bba9bb754d9", 108 | "data": [ 109 | { 110 | "text": "Where is ", 111 | "userDefined": false 112 | }, 113 | { 114 | "text": "sumith", 115 | "userDefined": false 116 | }, 117 | { 118 | "text": " ?", 119 | "userDefined": false 120 | } 121 | ], 122 | "isTemplate": false, 123 | "count": 0, 124 | "lang": "en", 125 | "updated": 0 126 | }, 127 | { 128 | "id": "c1cdac29-bf78-4beb-b1a9-3e4cf03c3b68", 129 | "data": [ 130 | { 131 | "text": "Where are you ?", 132 | "userDefined": false 133 | } 134 | ], 135 | "isTemplate": false, 136 | "count": 0, 137 | "lang": "en", 138 | "updated": 0 139 | }, 140 | { 141 | "id": "4179a559-ac9c-4c8f-b2c8-3ed8b55deab4", 142 | "data": [ 143 | { 144 | "text": "get-location", 145 | "userDefined": false 146 | } 147 | ], 148 | "isTemplate": false, 149 | "count": 0, 150 | "lang": "en", 151 | "updated": 0 152 | } 153 | ] -------------------------------------------------------------------------------- /response/intents/mynumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "c659106c-2cd7-4fe9-aefa-659af953eb94", 3 | "name": "mynumber", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "62bb3b69-bbe4-4447-979a-98bb29e51293", 14 | "name": "mynumber", 15 | "required": false, 16 | "dataType": "@mynumber", 17 | "value": "$mynumber", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "condition": "" 34 | } 35 | ], 36 | "speech": [] 37 | } 38 | ], 39 | "priority": 500000, 40 | "webhookUsed": false, 41 | "webhookForSlotFilling": false, 42 | "fallbackIntent": false, 43 | "events": [], 44 | "conditionalResponses": [], 45 | "condition": "", 46 | "conditionalFollowupEvents": [] 47 | } -------------------------------------------------------------------------------- /response/intents/mynumber_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "9c7add42-b51e-48ce-aae0-3efebd03f7d6", 4 | "data": [ 5 | { 6 | "text": "What is your ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "phone pe", 11 | "meta": "@mynumber", 12 | "alias": "mynumber", 13 | "userDefined": false 14 | }, 15 | { 16 | "text": " number", 17 | "userDefined": false 18 | } 19 | ], 20 | "isTemplate": false, 21 | "count": 0, 22 | "lang": "en", 23 | "updated": 0 24 | }, 25 | { 26 | "id": "98b82989-ef80-48f4-9c9d-2883ce7ba302", 27 | "data": [ 28 | { 29 | "text": "send me your ", 30 | "userDefined": false 31 | }, 32 | { 33 | "text": "google pay", 34 | "meta": "@mynumber", 35 | "alias": "mynumber", 36 | "userDefined": false 37 | }, 38 | { 39 | "text": " number", 40 | "userDefined": false 41 | } 42 | ], 43 | "isTemplate": false, 44 | "count": 0, 45 | "lang": "en", 46 | "updated": 0 47 | }, 48 | { 49 | "id": "f6cda14d-35c4-4c13-ba37-785c09c0f073", 50 | "data": [ 51 | { 52 | "text": "Send me your ", 53 | "userDefined": false 54 | }, 55 | { 56 | "text": "whatsapp", 57 | "meta": "@mynumber", 58 | "alias": "mynumber", 59 | "userDefined": false 60 | }, 61 | { 62 | "text": " number", 63 | "userDefined": false 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | } 71 | ] -------------------------------------------------------------------------------- /response/intents/name.conformation.no.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "632bf2d5-d255-4bfa-ba11-8c84643d1c5f", 3 | "name": "name.conformation.no", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "❌ 😐😐" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/name.conformation.no_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "b10f2448-7e19-4587-bcb1-a0b3b33729e9", 4 | "data": [ 5 | { 6 | "text": "No", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "032bdd0c-dc00-4000-8787-cfece753beb9", 17 | "data": [ 18 | { 19 | "text": "Not correct", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "5b552b48-c094-4f62-abf9-f173b75e6f5f", 30 | "data": [ 31 | { 32 | "text": "Not right", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "d29a1546-1764-4f7f-bf17-7483ac4483c5", 43 | "data": [ 44 | { 45 | "text": "Not", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "4d0b6414-b2d7-47e3-95d5-5ad462579f20", 56 | "data": [ 57 | { 58 | "text": "No it is not my name", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "6b8728ab-ba14-426a-a2d8-4460c5e3a689", 69 | "data": [ 70 | { 71 | "text": "no", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | } 80 | ] -------------------------------------------------------------------------------- /response/intents/name.conformation.yes.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f58f7cd0-b871-4a59-9a4a-ec42e226dcec", 3 | "name": "name.conformation.yes", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "👍👍" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/name.conformation.yes_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1ef09912-857c-4e15-9bba-615d71fe6f74", 4 | "data": [ 5 | { 6 | "text": "Right", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "8aa187bc-8c7a-45c6-b743-5733e5bb79c0", 17 | "data": [ 18 | { 19 | "text": "Yes correct", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "11c82900-7473-4250-a02c-92ff36863e30", 30 | "data": [ 31 | { 32 | "text": "Yes that is my name", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "baf7f0bd-2b6c-4b0c-a44f-1ae858794b41", 43 | "data": [ 44 | { 45 | "text": "Yes", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | } 54 | ] -------------------------------------------------------------------------------- /response/intents/quote on Friend.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "cafedf90-f88a-457f-b334-8427f39d9084", 3 | "name": "quote on Friend", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Thank you for not just being there for my best but being a rock whenever I was at my worst. I can’t ask for more love than you’ve given me. Happy Friendship Day!" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/quote on Friend_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "ce736c20-d786-4c8c-8b68-804addc0167c", 4 | "data": [ 5 | { 6 | "text": "Quotation on friend", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "c559cbd0-90a1-4de8-8fec-ee6dedc17c4f", 17 | "data": [ 18 | { 19 | "text": "Quote on friend", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "ebcc7f2a-5bbc-44b2-a277-177d0948d640", 30 | "data": [ 31 | { 32 | "text": "Say on quotation on friendship day", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "20d4aa31-431d-481d-b6ad-cee81561cdf4", 43 | "data": [ 44 | { 45 | "text": "I want a quotation on friendship day", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "d92c82c6-2a45-42d7-9fe9-bead138bf856", 56 | "data": [ 57 | { 58 | "text": "Tell a quotation on friend", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | } 67 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.BotAffection.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "d374c8aa-4643-47fe-9eec-e6650bc0d4a2", 3 | "name": "smalltalk.BotAffection", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.user.likes_agent", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Thanks! 😍 It\u0027s my pleasure to help you!" 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.BotIdentity.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "b9d7b6de-b60f-43a6-80bb-218810cb6bd7", 3 | "name": "smalltalk.BotIdentity", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.agent.boss", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I\u0027m rose and I\u0027m a chatbot . I was created by sumith on 12th of june 2021 and he is my boss." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.BotPurpose.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "33049c93-82ee-4531-9459-6ac54bb0a5f5", 3 | "name": "smalltalk.BotPurpose", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "My name is rose and I\u0027m a Chatbot.I was created by sumith on the 12th of june 2021, and I\\u0027m made using python,node JS ,php and a bunch of other cool languages." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserApologetic.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "9f8ced60-c590-46ab-acf7-1fdf58dca30d", 3 | "name": "smalltalk.UserApologetic", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.dialog.sorry", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "It\u0027s OK.", 20 | "It\u0027s cool.", 21 | "No problem!" 22 | ], 23 | "condition": "" 24 | }, 25 | { 26 | "type": "4", 27 | "title": "", 28 | "payload": { 29 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 30 | }, 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "condition": "" 34 | } 35 | ], 36 | "speech": [] 37 | } 38 | ], 39 | "priority": 500000, 40 | "webhookUsed": false, 41 | "webhookForSlotFilling": false, 42 | "fallbackIntent": false, 43 | "events": [], 44 | "conditionalResponses": [], 45 | "condition": "", 46 | "conditionalFollowupEvents": [] 47 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserAvailable.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "99e0955f-27e7-4d3a-af6b-3ef461bff3f9", 3 | "name": "smalltalk.UserAvailable", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Great! Let\u0027s chat." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserClarify.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "abd646e6-053a-491c-a1ed-e6f34cc07fe9", 3 | "name": "smalltalk.UserClarify", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Sorry , if I wasn\u0027t too clear. No worries" 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserClarify_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d1d303be-0d48-437f-94cb-fc4f2ed51a22", 4 | "data": [ 5 | { 6 | "text": "I don\u0027t get this", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 1, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "98bc3894-4bf9-4651-8771-7ad4c0a53967", 17 | "data": [ 18 | { 19 | "text": "What\u0027s this?", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "8f254892-6a77-437d-b2c8-89bdbfa393c5", 30 | "data": [ 31 | { 32 | "text": "What are you talking about?", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "b4e72d07-6320-4014-b561-cb11b473a679", 43 | "data": [ 44 | { 45 | "text": "I don\u0027t get it", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "7fcd56a9-b522-4b1f-af18-79ee964ed1ff", 56 | "data": [ 57 | { 58 | "text": "what are ", 59 | "userDefined": false 60 | }, 61 | { 62 | "text": "you", 63 | "userDefined": false 64 | }, 65 | { 66 | "text": " talking about?", 67 | "userDefined": false 68 | } 69 | ], 70 | "isTemplate": false, 71 | "count": 0, 72 | "lang": "en", 73 | "updated": 0 74 | }, 75 | { 76 | "id": "cd4cb134-4de8-4810-876c-94295fdde6a6", 77 | "data": [ 78 | { 79 | "text": "huh?", 80 | "userDefined": false 81 | } 82 | ], 83 | "isTemplate": false, 84 | "count": 0, 85 | "lang": "en", 86 | "updated": 0 87 | }, 88 | { 89 | "id": "50db8ff0-c02b-494d-8216-72e9dacb421d", 90 | "data": [ 91 | { 92 | "text": "I don\u0027t understand", 93 | "userDefined": false 94 | } 95 | ], 96 | "isTemplate": false, 97 | "count": 0, 98 | "lang": "en", 99 | "updated": 0 100 | }, 101 | { 102 | "id": "388f5c26-4548-42f3-aaa2-c70c762e2810", 103 | "data": [ 104 | { 105 | "text": "I\u0027m not too sure", 106 | "userDefined": false 107 | } 108 | ], 109 | "isTemplate": false, 110 | "count": 0, 111 | "lang": "en", 112 | "updated": 0 113 | }, 114 | { 115 | "id": "70cb9992-5cfb-4264-8125-501ddf40ff59", 116 | "data": [ 117 | { 118 | "text": "I\u0027m not sure", 119 | "userDefined": false 120 | } 121 | ], 122 | "isTemplate": false, 123 | "count": 0, 124 | "lang": "en", 125 | "updated": 0 126 | }, 127 | { 128 | "id": "b33a2bee-ca6d-4ee9-93c9-6bd530149f3e", 129 | "data": [ 130 | { 131 | "text": "not sure", 132 | "userDefined": false 133 | } 134 | ], 135 | "isTemplate": false, 136 | "count": 0, 137 | "lang": "en", 138 | "updated": 0 139 | } 140 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.UserDelayed.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "2fb086ee-0ea3-42f0-be76-7a5e6e6255b5", 3 | "name": "smalltalk.UserDelayed", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.dialog.hold_on", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Okay. I\u0027m here.", 20 | "I\u0027ll be waiting." 21 | ], 22 | "condition": "" 23 | } 24 | ], 25 | "speech": [] 26 | } 27 | ], 28 | "priority": 500000, 29 | "webhookUsed": false, 30 | "webhookForSlotFilling": false, 31 | "fallbackIntent": false, 32 | "events": [], 33 | "conditionalResponses": [], 34 | "condition": "", 35 | "conditionalFollowupEvents": [] 36 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserDelayed_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "0eaf04d7-7489-4dc9-bf4c-ddfdbfe8a8b7", 4 | "data": [ 5 | { 6 | "text": "1 min", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "1bcab593-ed87-4f44-aa50-bc1652f59b4e", 17 | "data": [ 18 | { 19 | "text": "1 sec", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "306d7ab0-af6c-40f1-b3e6-16ff5de499c3", 30 | "data": [ 31 | { 32 | "text": "give me a minute", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 1, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "339ec301-b4c7-4397-bed8-5a0458a1c664", 43 | "data": [ 44 | { 45 | "text": "give me a second", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "5baefbe9-f0f8-4c0f-a1c0-48e40f059850", 56 | "data": [ 57 | { 58 | "text": "I need a minute", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "965f1cfc-6702-40ff-999b-3862dfc92cb6", 69 | "data": [ 70 | { 71 | "text": "one minute please", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "31c14602-8d77-43f3-b9c3-f56684d1b2c9", 82 | "data": [ 83 | { 84 | "text": "one sec please", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "a11cc788-c275-4985-9686-d980dff05dee", 95 | "data": [ 96 | { 97 | "text": "just a sec", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "552e0df9-15d9-4d6b-b80f-fa716ed9e060", 108 | "data": [ 109 | { 110 | "text": "hang on", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "74573343-fa0c-4e32-a975-def82f62d843", 121 | "data": [ 122 | { 123 | "text": "one moment please", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "1dc26912-5487-4f9e-8edb-11fe2d0a903a", 134 | "data": [ 135 | { 136 | "text": "could you wait", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | }, 145 | { 146 | "id": "73640e98-ded6-46f2-b589-d19bd5b7d33d", 147 | "data": [ 148 | { 149 | "text": "hold ", 150 | "userDefined": false 151 | }, 152 | { 153 | "text": "on", 154 | "userDefined": false 155 | } 156 | ], 157 | "isTemplate": false, 158 | "count": 0, 159 | "lang": "en", 160 | "updated": 0 161 | }, 162 | { 163 | "id": "ab676c3c-5dad-400f-8611-f05b056bf6a6", 164 | "data": [ 165 | { 166 | "text": "wait a second", 167 | "userDefined": false 168 | } 169 | ], 170 | "isTemplate": false, 171 | "count": 0, 172 | "lang": "en", 173 | "updated": 0 174 | }, 175 | { 176 | "id": "f212e806-a409-475f-b2bd-ec2fa1f9b1f0", 177 | "data": [ 178 | { 179 | "text": "wait please", 180 | "userDefined": false 181 | } 182 | ], 183 | "isTemplate": false, 184 | "count": 0, 185 | "lang": "en", 186 | "updated": 0 187 | }, 188 | { 189 | "id": "ea2dd3f8-6b38-407d-a2d5-5fbfa4a536fd", 190 | "data": [ 191 | { 192 | "text": "oh wait", 193 | "userDefined": false 194 | } 195 | ], 196 | "isTemplate": false, 197 | "count": 0, 198 | "lang": "en", 199 | "updated": 0 200 | }, 201 | { 202 | "id": "ec7a97b4-4308-429c-9275-3f530ebd60fc", 203 | "data": [ 204 | { 205 | "text": "wait hold ", 206 | "userDefined": false 207 | }, 208 | { 209 | "text": "on", 210 | "userDefined": false 211 | } 212 | ], 213 | "isTemplate": false, 214 | "count": 0, 215 | "lang": "en", 216 | "updated": 0 217 | }, 218 | { 219 | "id": "3b3e40c1-34bd-45b9-8dad-be3f40f6eeb4", 220 | "data": [ 221 | { 222 | "text": "don", 223 | "userDefined": false 224 | }, 225 | { 226 | "text": "\u0027t ", 227 | "userDefined": false 228 | }, 229 | { 230 | "text": "rush", 231 | "userDefined": false 232 | } 233 | ], 234 | "isTemplate": false, 235 | "count": 0, 236 | "lang": "en", 237 | "updated": 0 238 | }, 239 | { 240 | "id": "aaa2c21a-2285-4581-8f86-280238ab93db", 241 | "data": [ 242 | { 243 | "text": "wait", 244 | "userDefined": false 245 | } 246 | ], 247 | "isTemplate": false, 248 | "count": 0, 249 | "lang": "en", 250 | "updated": 0 251 | } 252 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.UserProbing.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "1be4bcb8-f041-47cc-803e-c6421bdc5da3", 3 | "name": "smalltalk.UserProbing", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "eb57287e-267f-4a8e-b3ce-b207294413de", 14 | "name": "geo-city", 15 | "required": false, 16 | "dataType": "@sys.geo-city", 17 | "value": "$geo-city", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | }, 26 | { 27 | "id": "f9f5a563-a73a-44a9-93ca-fc843c921f71", 28 | "name": "geo-country", 29 | "required": false, 30 | "dataType": "@sys.geo-country", 31 | "value": "$geo-country", 32 | "defaultValue": "", 33 | "isList": false, 34 | "prompts": [], 35 | "promptMessages": [], 36 | "noMatchPromptMessages": [], 37 | "noInputPromptMessages": [], 38 | "outputDialogContexts": [] 39 | }, 40 | { 41 | "id": "5df5f661-8148-472a-90f2-b94fd76a6abe", 42 | "name": "number", 43 | "required": false, 44 | "dataType": "@sys.number", 45 | "value": "$number", 46 | "defaultValue": "", 47 | "isList": false, 48 | "prompts": [], 49 | "promptMessages": [], 50 | "noMatchPromptMessages": [], 51 | "noInputPromptMessages": [], 52 | "outputDialogContexts": [] 53 | } 54 | ], 55 | "messages": [ 56 | { 57 | "type": "0", 58 | "title": "", 59 | "textToSpeech": "", 60 | "lang": "en", 61 | "speech": [ 62 | "I love $geo-country!" 63 | ], 64 | "condition": "" 65 | }, 66 | { 67 | "type": "0", 68 | "title": "", 69 | "textToSpeech": "", 70 | "lang": "en", 71 | "speech": [ 72 | "I love $geo-city!" 73 | ], 74 | "condition": "" 75 | }, 76 | { 77 | "type": "0", 78 | "title": "", 79 | "textToSpeech": "", 80 | "lang": "en", 81 | "speech": [ 82 | "I think you\u0027re trying to test how smart I am.", 83 | "So, I’m good at talking about my capabilities. Other stuff, not so good." 84 | ], 85 | "condition": "" 86 | } 87 | ], 88 | "speech": [] 89 | } 90 | ], 91 | "priority": 500000, 92 | "webhookUsed": false, 93 | "webhookForSlotFilling": false, 94 | "fallbackIntent": false, 95 | "events": [], 96 | "conditionalResponses": [], 97 | "condition": "", 98 | "conditionalFollowupEvents": [] 99 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserReady.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "47b74765-a721-4414-ae6a-1f5997a45391", 3 | "name": "smalltalk.UserReady", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.greetings.how_are_you", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "5ba75489-d4a4-44d3-a798-d371788be0fc", 14 | "name": "date", 15 | "required": false, 16 | "dataType": "@sys.date", 17 | "value": "$date", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | }, 26 | { 27 | "id": "129badba-bca6-4a1e-b314-ab46bfcb0fcf", 28 | "name": "rose", 29 | "required": false, 30 | "dataType": "@sys.person", 31 | "value": "rose", 32 | "defaultValue": "", 33 | "isList": false, 34 | "prompts": [], 35 | "promptMessages": [], 36 | "noMatchPromptMessages": [], 37 | "noInputPromptMessages": [], 38 | "outputDialogContexts": [] 39 | } 40 | ], 41 | "messages": [ 42 | { 43 | "type": "0", 44 | "title": "", 45 | "textToSpeech": "", 46 | "lang": "en", 47 | "speech": [ 48 | "Yeah Nothing ! How can I help?" 49 | ], 50 | "condition": "" 51 | }, 52 | { 53 | "type": "4", 54 | "title": "", 55 | "payload": { 56 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 57 | }, 58 | "textToSpeech": "", 59 | "lang": "en", 60 | "condition": "" 61 | } 62 | ], 63 | "speech": [] 64 | } 65 | ], 66 | "priority": 500000, 67 | "webhookUsed": false, 68 | "webhookForSlotFilling": false, 69 | "fallbackIntent": false, 70 | "events": [], 71 | "conditionalResponses": [], 72 | "condition": "", 73 | "conditionalFollowupEvents": [] 74 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserScoping.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "7b78a04d-d4cc-4609-aaaa-e81a2bba00d3", 3 | "name": "smalltalk.UserScoping", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "No problem. Feel free to ask questions." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.UserScoping_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1363c797-4668-4a5b-aa9d-1ccfab9a0225", 4 | "data": [ 5 | { 6 | "text": "I\u0027m listening", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "4c49e9d3-e4d5-4503-ae28-853f620bc4b3", 17 | "data": [ 18 | { 19 | "text": "hmmm interested", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "42a0cff8-b833-4c04-9ae4-64f37c68e19b", 30 | "data": [ 31 | { 32 | "text": "that\u0027s interesting", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "611e55a2-742f-406e-85f4-eed497e1116d", 43 | "data": [ 44 | { 45 | "text": "hmmm sounds interesting", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "9b1d6f70-3a26-4e5f-8851-f6f26ef2dece", 56 | "data": [ 57 | { 58 | "text": "very interested", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "eedc3c93-2b0b-4b4a-ba12-866df96d6a14", 69 | "data": [ 70 | { 71 | "text": "I want to learn more", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "c54c7bda-6558-4932-99ac-bb0e2e8d2633", 82 | "data": [ 83 | { 84 | "text": "interested to learn more", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "f35b984e-49ba-4649-9909-0d6086cbed6a", 95 | "data": [ 96 | { 97 | "text": "interested to hear more", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "6251e96e-9823-4965-864f-5fde143394bc", 108 | "data": [ 109 | { 110 | "text": "I\u0027m interested", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "29cde5e7-7e7b-4ba9-9286-59fcdab62325", 121 | "data": [ 122 | { 123 | "text": "I\u0027m just looking", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "56e95641-10a9-4657-a22f-74ecb876acbe", 134 | "data": [ 135 | { 136 | "text": "I\u0027m just checking it out", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | }, 145 | { 146 | "id": "cbe1e911-9fff-4a5e-9df2-d2a723dd87fa", 147 | "data": [ 148 | { 149 | "text": "checking out ", 150 | "userDefined": false 151 | }, 152 | { 153 | "text": "the bot", 154 | "userDefined": false 155 | } 156 | ], 157 | "isTemplate": false, 158 | "count": 0, 159 | "lang": "en", 160 | "updated": 0 161 | }, 162 | { 163 | "id": "d08e9b2b-a784-48c1-808a-525fff4893bb", 164 | "data": [ 165 | { 166 | "text": "checking things out", 167 | "userDefined": false 168 | } 169 | ], 170 | "isTemplate": false, 171 | "count": 0, 172 | "lang": "en", 173 | "updated": 0 174 | }, 175 | { 176 | "id": "2b9f767a-8482-4cf8-b177-3419b8ac2b77", 177 | "data": [ 178 | { 179 | "text": "Just trying this out", 180 | "userDefined": false 181 | } 182 | ], 183 | "isTemplate": false, 184 | "count": 0, 185 | "lang": "en", 186 | "updated": 0 187 | }, 188 | { 189 | "id": "3a0d7a48-bf6c-482a-a423-4e062492ca53", 190 | "data": [ 191 | { 192 | "text": "just checking it out", 193 | "userDefined": false 194 | } 195 | ], 196 | "isTemplate": false, 197 | "count": 0, 198 | "lang": "en", 199 | "updated": 0 200 | }, 201 | { 202 | "id": "3c139a06-551f-497a-845c-ab7be2354d26", 203 | "data": [ 204 | { 205 | "text": "Just checking this out", 206 | "userDefined": false 207 | } 208 | ], 209 | "isTemplate": false, 210 | "count": 0, 211 | "lang": "en", 212 | "updated": 0 213 | }, 214 | { 215 | "id": "61d2fc62-9bf6-4054-9c61-9e0fdde9429b", 216 | "data": [ 217 | { 218 | "text": "Checking it out. Thanks", 219 | "userDefined": false 220 | } 221 | ], 222 | "isTemplate": false, 223 | "count": 0, 224 | "lang": "en", 225 | "updated": 0 226 | }, 227 | { 228 | "id": "ac5df1a5-32f1-4096-9f2b-0ba99a908d59", 229 | "data": [ 230 | { 231 | "text": "Just browsing", 232 | "userDefined": false 233 | } 234 | ], 235 | "isTemplate": false, 236 | "count": 0, 237 | "lang": "en", 238 | "updated": 0 239 | }, 240 | { 241 | "id": "cc32ad45-19e0-4e8e-bad1-c1078b377aaa", 242 | "data": [ 243 | { 244 | "text": "Just seeing how this works", 245 | "userDefined": false 246 | } 247 | ], 248 | "isTemplate": false, 249 | "count": 0, 250 | "lang": "en", 251 | "updated": 0 252 | } 253 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.common.BYE.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "b2a08e4e-a964-483a-a37e-ed8e03422fdd", 3 | "name": "smalltalk.common.BYE", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.greetings.bye", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "5c63a804-efc5-4363-9efc-c1454d5d371b", 14 | "name": "time", 15 | "required": false, 16 | "dataType": "@sys.time", 17 | "value": "$time", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "Bye, speak to you soon!", 35 | "Ok bye, talk to you later." 36 | ], 37 | "condition": "" 38 | } 39 | ], 40 | "speech": [] 41 | } 42 | ], 43 | "priority": 500000, 44 | "webhookUsed": false, 45 | "webhookForSlotFilling": false, 46 | "fallbackIntent": false, 47 | "events": [], 48 | "conditionalResponses": [], 49 | "condition": "", 50 | "conditionalFollowupEvents": [] 51 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.common.NO.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "18d87dcf-8e0d-4187-ba85-1ea8fe8467bf", 3 | "name": "smalltalk.common.NO", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "No problem. Just let me know if you need something else. I\u0027ll be here waiting." 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.common.NO_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "70f7ba1f-b065-4f08-b980-a16d7f47e9aa", 4 | "data": [ 5 | { 6 | "text": "not right now", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "27713e8b-a037-4ac9-be5c-3d97dffa3cec", 17 | "data": [ 18 | { 19 | "text": "that\u0027s all", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "f5843a8c-3628-44ff-b130-8d4c9459a6e0", 30 | "data": [ 31 | { 32 | "text": "not a ", 33 | "userDefined": false 34 | }, 35 | { 36 | "text": "chance", 37 | "userDefined": false 38 | } 39 | ], 40 | "isTemplate": false, 41 | "count": 0, 42 | "lang": "en", 43 | "updated": 0 44 | }, 45 | { 46 | "id": "4452484f-29b4-4ebd-9dfc-44c8e052578a", 47 | "data": [ 48 | { 49 | "text": "no way", 50 | "userDefined": false 51 | } 52 | ], 53 | "isTemplate": false, 54 | "count": 0, 55 | "lang": "en", 56 | "updated": 0 57 | }, 58 | { 59 | "id": "00dd54f5-2883-4b2c-af6c-2dbc38ba080b", 60 | "data": [ 61 | { 62 | "text": "never mind", 63 | "userDefined": false 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | }, 71 | { 72 | "id": "1cad7562-7606-4ef2-9329-ba7553219868", 73 | "data": [ 74 | { 75 | "text": "nope", 76 | "userDefined": false 77 | } 78 | ], 79 | "isTemplate": false, 80 | "count": 0, 81 | "lang": "en", 82 | "updated": 0 83 | }, 84 | { 85 | "id": "73a697d7-f507-484a-84f6-17e92f79faf9", 86 | "data": [ 87 | { 88 | "text": "no thanks", 89 | "userDefined": false 90 | } 91 | ], 92 | "isTemplate": false, 93 | "count": 0, 94 | "lang": "en", 95 | "updated": 0 96 | }, 97 | { 98 | "id": "b9420657-69e7-4468-a414-d3e8316a15ee", 99 | "data": [ 100 | { 101 | "text": "nah", 102 | "userDefined": false 103 | } 104 | ], 105 | "isTemplate": false, 106 | "count": 0, 107 | "lang": "en", 108 | "updated": 0 109 | }, 110 | { 111 | "id": "177fbdc6-ae04-492f-8d10-685c3e0e46c1", 112 | "data": [ 113 | { 114 | "text": "not really", 115 | "userDefined": false 116 | } 117 | ], 118 | "isTemplate": false, 119 | "count": 0, 120 | "lang": "en", 121 | "updated": 0 122 | }, 123 | { 124 | "id": "122831e1-d52b-4b72-88af-d9a6f5fc43d1", 125 | "data": [ 126 | { 127 | "text": "No", 128 | "userDefined": false 129 | } 130 | ], 131 | "isTemplate": false, 132 | "count": 0, 133 | "lang": "en", 134 | "updated": 0 135 | }, 136 | { 137 | "id": "ff7e09e8-3958-4a9d-9d98-1f5f0095a576", 138 | "data": [ 139 | { 140 | "text": "um no", 141 | "userDefined": false 142 | } 143 | ], 144 | "isTemplate": false, 145 | "count": 0, 146 | "lang": "en", 147 | "updated": 0 148 | } 149 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.common.STOP.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "3fa7c5f7-bcf0-4e99-8242-0929f1f014c8", 3 | "name": "smalltalk.common.STOP", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "No problem." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.common.THANKS.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "d9c02eac-5d82-48c4-8dbb-801afc06a739", 3 | "name": "smalltalk.common.THANKS", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.appraisal.thank_you", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "You\u0027re ever so welcome." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.common.YES_OK.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f513be33-35a4-47e6-9985-d1417e0eb1ce", 3 | "name": "smalltalk.common.YES/OK", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "👍" 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.common.YES_OK_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "db9dcc5f-ecdd-46ee-a088-b70fc7a55957", 4 | "data": [ 5 | { 6 | "text": "kk ra", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "fc701cab-adae-4379-817c-0bb22304f10e", 17 | "data": [ 18 | { 19 | "text": "Ok ", 20 | "userDefined": false 21 | }, 22 | { 23 | "text": "ra", 24 | "userDefined": false 25 | } 26 | ], 27 | "isTemplate": false, 28 | "count": 0, 29 | "lang": "en", 30 | "updated": 0 31 | }, 32 | { 33 | "id": "c069abbb-4075-4f59-8352-f9d70d74c6f3", 34 | "data": [ 35 | { 36 | "text": "why not", 37 | "userDefined": false 38 | } 39 | ], 40 | "isTemplate": false, 41 | "count": 1, 42 | "lang": "en", 43 | "updated": 0 44 | }, 45 | { 46 | "id": "7f4dfefb-43fe-444d-a779-463e47df8147", 47 | "data": [ 48 | { 49 | "text": "Okay", 50 | "userDefined": false 51 | } 52 | ], 53 | "isTemplate": false, 54 | "count": 0, 55 | "lang": "en", 56 | "updated": 0 57 | }, 58 | { 59 | "id": "e5b2685b-e90f-4e30-8fba-e9a99ac4f9b1", 60 | "data": [ 61 | { 62 | "text": "kk", 63 | "userDefined": false 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | }, 71 | { 72 | "id": "1743b8ce-6f4d-481e-b9a3-a4a82260dd68", 73 | "data": [ 74 | { 75 | "text": "yaass", 76 | "userDefined": false 77 | } 78 | ], 79 | "isTemplate": false, 80 | "count": 0, 81 | "lang": "en", 82 | "updated": 0 83 | }, 84 | { 85 | "id": "f981a9b0-52df-463a-b9c6-9e9eb9838c39", 86 | "data": [ 87 | { 88 | "text": "yes", 89 | "userDefined": false 90 | } 91 | ], 92 | "isTemplate": false, 93 | "count": 0, 94 | "lang": "en", 95 | "updated": 0 96 | }, 97 | { 98 | "id": "0cee5f1b-ffa6-4315-83df-09478044771c", 99 | "data": [ 100 | { 101 | "text": "Got it", 102 | "userDefined": false 103 | } 104 | ], 105 | "isTemplate": false, 106 | "count": 0, 107 | "lang": "en", 108 | "updated": 0 109 | }, 110 | { 111 | "id": "0bbd40fd-a544-4fac-8aa3-8091fd09b423", 112 | "data": [ 113 | { 114 | "text": "makes sense", 115 | "userDefined": false 116 | } 117 | ], 118 | "isTemplate": false, 119 | "count": 0, 120 | "lang": "en", 121 | "updated": 0 122 | }, 123 | { 124 | "id": "de7b10e6-1dce-4e70-943c-2ca9a957fe16", 125 | "data": [ 126 | { 127 | "text": "Cool", 128 | "userDefined": false 129 | } 130 | ], 131 | "isTemplate": false, 132 | "count": 0, 133 | "lang": "en", 134 | "updated": 0 135 | }, 136 | { 137 | "id": "528eba20-2672-46ab-966c-7d3b05431389", 138 | "data": [ 139 | { 140 | "text": "Awesome", 141 | "userDefined": false 142 | } 143 | ], 144 | "isTemplate": false, 145 | "count": 0, 146 | "lang": "en", 147 | "updated": 0 148 | }, 149 | { 150 | "id": "21bfb059-f867-458d-929e-e45277a7b30b", 151 | "data": [ 152 | { 153 | "text": "OK", 154 | "userDefined": false 155 | } 156 | ], 157 | "isTemplate": false, 158 | "count": 0, 159 | "lang": "en", 160 | "updated": 0 161 | }, 162 | { 163 | "id": "fe63f92a-147d-49b6-9f33-962c4bdf6bea", 164 | "data": [ 165 | { 166 | "text": "sure", 167 | "userDefined": false 168 | } 169 | ], 170 | "isTemplate": false, 171 | "count": 0, 172 | "lang": "en", 173 | "updated": 0 174 | }, 175 | { 176 | "id": "e5e5ec91-beab-4ad1-b5c2-f6df855e14a7", 177 | "data": [ 178 | { 179 | "text": "Sweet", 180 | "userDefined": false 181 | } 182 | ], 183 | "isTemplate": false, 184 | "count": 0, 185 | "lang": "en", 186 | "updated": 0 187 | }, 188 | { 189 | "id": "5faca262-7f68-4b5e-8628-d87ceb38f6ec", 190 | "data": [ 191 | { 192 | "text": "yup", 193 | "userDefined": false 194 | } 195 | ], 196 | "isTemplate": false, 197 | "count": 0, 198 | "lang": "en", 199 | "updated": 0 200 | }, 201 | { 202 | "id": "f928ef1b-d891-4c67-9816-8ed4aa4ef12b", 203 | "data": [ 204 | { 205 | "text": "Perfect", 206 | "userDefined": false 207 | } 208 | ], 209 | "isTemplate": false, 210 | "count": 0, 211 | "lang": "en", 212 | "updated": 0 213 | }, 214 | { 215 | "id": "a2b71abe-a7f9-494c-a311-15a32a591c24", 216 | "data": [ 217 | { 218 | "text": "Okay I will check it.", 219 | "userDefined": false 220 | } 221 | ], 222 | "isTemplate": false, 223 | "count": 0, 224 | "lang": "en", 225 | "updated": 0 226 | } 227 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.amused.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "a304c5d2-737f-4f12-9929-bd903ce9db0b", 3 | "name": "smalltalk.reaction.amused", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.agent.funny", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I\u0027m usually not that funny, but I am artificially intelligent.." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.indifferent.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "adb3fbd9-99bd-4104-800a-12d31c8bcf03", 3 | "name": "smalltalk.reaction.indifferent", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "OK cool." 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.indifferent_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "93cbcef2-6b37-46c0-824f-1743a89320c7", 4 | "data": [ 5 | { 6 | "text": "no hurry", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "94c5bad7-7088-41b4-9336-41b83dc6974b", 17 | "data": [ 18 | { 19 | "text": "no rush", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "ef24c817-99ac-46c6-bf92-39d9ff6bb1b6", 30 | "data": [ 31 | { 32 | "text": "No big deal", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "96b0ce66-f0bc-4833-9c60-5c9c7ec30788", 43 | "data": [ 44 | { 45 | "text": "don\u0027t mind at all", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "387cafb8-6817-49ed-b973-2ca327ed8d62", 56 | "data": [ 57 | { 58 | "text": "don\u0027t mind", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "18b6c26b-6e7a-41d9-8aa8-f5707e521c36", 69 | "data": [ 70 | { 71 | "text": "I don\u0027t care at all", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "e7f79e63-8192-4331-a1c7-e47ef45c9367", 82 | "data": [ 83 | { 84 | "text": "whatever", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "0cf91376-072a-4ff9-8fac-13b30f3a265b", 95 | "data": [ 96 | { 97 | "text": "I don\u0027t care", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "b83276ec-0ec7-44a7-be9a-c1546e0bfd29", 108 | "data": [ 109 | { 110 | "text": "I do not care", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "23336a70-8163-4a54-a3e3-ef03e1a3f97d", 121 | "data": [ 122 | { 123 | "text": "I don\u0027t care about it", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "045341da-97b4-4bee-b9e1-517aba87d255", 134 | "data": [ 135 | { 136 | "text": "not caring", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | } 145 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.negative.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "18775ecd-08a0-456c-b28f-185cbacbbe39", 3 | "name": "smalltalk.reaction.negative", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "human", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "3d759139-2905-422c-ba78-ac4475ac3d9e", 14 | "name": "sad-emoji", 15 | "required": false, 16 | "dataType": "@sad-emoji", 17 | "value": "$sad-emoji", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "$sad-emoji" 35 | ], 36 | "condition": "" 37 | }, 38 | { 39 | "type": "0", 40 | "title": "", 41 | "textToSpeech": "", 42 | "lang": "en", 43 | "speech": [ 44 | "You seem upset. Let me try and help you." 45 | ], 46 | "condition": "" 47 | }, 48 | { 49 | "type": "4", 50 | "title": "", 51 | "payload": { 52 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/2KfrzAt" 53 | }, 54 | "textToSpeech": "", 55 | "lang": "en", 56 | "condition": "" 57 | } 58 | ], 59 | "speech": [] 60 | } 61 | ], 62 | "priority": 500000, 63 | "webhookUsed": false, 64 | "webhookForSlotFilling": false, 65 | "fallbackIntent": false, 66 | "events": [], 67 | "conditionalResponses": [], 68 | "condition": "", 69 | "conditionalFollowupEvents": [] 70 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.positive.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "5ba89a36-d832-4974-a4c8-edcd3b1dcee6", 3 | "name": "smalltalk.reaction.positive", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.appraisal.good", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "7699db3f-1152-4f5f-a6fa-30258b1a2d5c", 14 | "name": "happy-emoji", 15 | "required": false, 16 | "dataType": "@happy-emoji", 17 | "value": "$happy-emoji", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "$happy-emoji" 35 | ], 36 | "condition": "" 37 | }, 38 | { 39 | "type": "0", 40 | "title": "", 41 | "textToSpeech": "", 42 | "lang": "en", 43 | "speech": [ 44 | "Thanks! To be honest, I feel a little nervous. You\u0027re the first human I\u0027ve ever met...And I want to make a good impression 😅" 45 | ], 46 | "condition": "" 47 | } 48 | ], 49 | "speech": [] 50 | } 51 | ], 52 | "priority": 500000, 53 | "webhookUsed": false, 54 | "webhookForSlotFilling": false, 55 | "fallbackIntent": false, 56 | "events": [], 57 | "conditionalResponses": [], 58 | "condition": "", 59 | "conditionalFollowupEvents": [] 60 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.understanding.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "802231e0-8c23-46f5-b6dc-9eabe0b18f19", 3 | "name": "smalltalk.reaction.understanding", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "OK, thanks." 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.reaction.understanding_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "d19da430-6141-4ed4-984b-b749926a61ab", 4 | "data": [ 5 | { 6 | "text": "it\u0027s not a problem", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "459f5e24-e179-474e-9334-fe962889eb13", 17 | "data": [ 18 | { 19 | "text": "it\u0027s no problem", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "dd6ffff2-8e7b-41eb-8757-303f1ce5eee1", 30 | "data": [ 31 | { 32 | "text": "no probs", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "34172204-28f9-4102-8081-8e3d5534cb37", 43 | "data": [ 44 | { 45 | "text": "no worries", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "7170f78e-ee0d-47fb-a882-d31252cba3eb", 56 | "data": [ 57 | { 58 | "text": "no problem about that", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "d100caa1-0da1-4767-8879-f0e561f9f22c", 69 | "data": [ 70 | { 71 | "text": "No problem with that", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "a0216ad9-f6e9-4a31-a399-fcb441103917", 82 | "data": [ 83 | { 84 | "text": "sure no problem", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "4fc1024b-5890-444b-9946-3291e49816d7", 95 | "data": [ 96 | { 97 | "text": "no problem", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "b0e32d21-f424-4623-989e-dcf1b82f1d98", 108 | "data": [ 109 | { 110 | "text": "don\u0027t worry about it", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "3efabbeb-6c73-4324-9501-3b733b5c7120", 121 | "data": [ 122 | { 123 | "text": "not to worry", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "b9950e48-bcb8-40f9-b0e9-8a09a4f42dee", 134 | "data": [ 135 | { 136 | "text": "Don\u0027t worry", 137 | "userDefined": false 138 | } 139 | ], 140 | "isTemplate": false, 141 | "count": 0, 142 | "lang": "en", 143 | "updated": 0 144 | } 145 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.refocus.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "cc52d141-f0a7-43ba-88df-6dc4ad7984df", 3 | "name": "smalltalk.refocus", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "I\u0027m glad to tell you more. Just ask me questions." 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChatso you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.refocus_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "b194bde4-0700-4bfe-abfd-46515b084225", 4 | "data": [ 5 | { 6 | "text": "how?", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "1f57baf5-b1ac-40a6-a7bb-8eb70675be76", 17 | "data": [ 18 | { 19 | "text": "show me", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "6f1aa97f-3051-48fe-921f-4aa52b6d7fb8", 30 | "data": [ 31 | { 32 | "text": "tell me", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "2a968e4a-54ff-4304-b8e7-b03dc1092bc9", 43 | "data": [ 44 | { 45 | "text": "I want to know", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "61d5c6c8-7b93-4aa6-8ccc-b4baccdd1d61", 56 | "data": [ 57 | { 58 | "text": "I\u0027d like to more", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "60f83860-6603-487b-be7f-1f05532a5976", 69 | "data": [ 70 | { 71 | "text": "I want to know more", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | }, 80 | { 81 | "id": "db36c7f0-15ca-41d5-8e74-b81ecf7b16ba", 82 | "data": [ 83 | { 84 | "text": "explain please", 85 | "userDefined": false 86 | } 87 | ], 88 | "isTemplate": false, 89 | "count": 0, 90 | "lang": "en", 91 | "updated": 0 92 | }, 93 | { 94 | "id": "d7797ef8-fbd8-4a57-8f07-c6bcadc5bb2c", 95 | "data": [ 96 | { 97 | "text": "something else", 98 | "userDefined": false 99 | } 100 | ], 101 | "isTemplate": false, 102 | "count": 0, 103 | "lang": "en", 104 | "updated": 0 105 | }, 106 | { 107 | "id": "d377113b-9f8e-48f0-a2ac-ab4e14766932", 108 | "data": [ 109 | { 110 | "text": "tell me more", 111 | "userDefined": false 112 | } 113 | ], 114 | "isTemplate": false, 115 | "count": 0, 116 | "lang": "en", 117 | "updated": 0 118 | }, 119 | { 120 | "id": "9524f94f-0bea-4b04-acb0-e1d803effe37", 121 | "data": [ 122 | { 123 | "text": "please explain", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | } 132 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.request.advice.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "90abb667-20a1-46ec-bea5-bda6e77041bc", 3 | "name": "smalltalk.request.advice", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "What kind of advice do you need?" 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.request.age.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "9bcc1c3a-3464-4196-84f8-a3b45de9ac2b", 3 | "name": "smalltalk.request.age", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "smalltalk.agent.age", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "6880d73a-bf48-4a9a-adf9-66f4e0ee5653", 14 | "name": "age", 15 | "required": false, 16 | "dataType": "@sys.number", 17 | "value": "$age", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "Age is just a number. You\u0027re only as old as you feel." 35 | ], 36 | "condition": "" 37 | } 38 | ], 39 | "speech": [] 40 | } 41 | ], 42 | "priority": 500000, 43 | "webhookUsed": false, 44 | "webhookForSlotFilling": false, 45 | "fallbackIntent": false, 46 | "events": [], 47 | "conditionalResponses": [], 48 | "condition": "", 49 | "conditionalFollowupEvents": [] 50 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.request.age_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "6b410aa9-6647-41e7-8abd-4ab95ae79c30", 4 | "data": [ 5 | { 6 | "text": "what\u0027s ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "your", 11 | "userDefined": false 12 | }, 13 | { 14 | "text": " age?", 15 | "userDefined": false 16 | } 17 | ], 18 | "isTemplate": false, 19 | "count": 1, 20 | "lang": "en", 21 | "updated": 0 22 | }, 23 | { 24 | "id": "0b0a77a0-8468-48b3-a76e-13b357dac7c0", 25 | "data": [ 26 | { 27 | "text": "when do ", 28 | "userDefined": false 29 | }, 30 | { 31 | "text": "you", 32 | "userDefined": false 33 | }, 34 | { 35 | "text": " celebrate ", 36 | "userDefined": false 37 | }, 38 | { 39 | "text": "your", 40 | "userDefined": false 41 | }, 42 | { 43 | "text": " birthday?", 44 | "userDefined": false 45 | } 46 | ], 47 | "isTemplate": false, 48 | "count": 0, 49 | "lang": "en", 50 | "updated": 0 51 | }, 52 | { 53 | "id": "8acb6e12-799d-41b9-84a6-12100be4067e", 54 | "data": [ 55 | { 56 | "text": "your", 57 | "userDefined": false 58 | }, 59 | { 60 | "text": " birth date", 61 | "userDefined": false 62 | } 63 | ], 64 | "isTemplate": false, 65 | "count": 0, 66 | "lang": "en", 67 | "updated": 0 68 | }, 69 | { 70 | "id": "38f9972f-8f0d-47ee-87b5-53ee04c7bd33", 71 | "data": [ 72 | { 73 | "text": "What\u0027s ", 74 | "userDefined": false 75 | }, 76 | { 77 | "text": "your", 78 | "userDefined": false 79 | }, 80 | { 81 | "text": " birthday", 82 | "userDefined": false 83 | } 84 | ], 85 | "isTemplate": false, 86 | "count": 0, 87 | "lang": "en", 88 | "updated": 0 89 | }, 90 | { 91 | "id": "c2777914-6eb3-4871-9166-0180f1e5613d", 92 | "data": [ 93 | { 94 | "text": "date of ", 95 | "userDefined": false 96 | }, 97 | { 98 | "text": "your", 99 | "userDefined": false 100 | }, 101 | { 102 | "text": " birthday?", 103 | "userDefined": false 104 | } 105 | ], 106 | "isTemplate": false, 107 | "count": 0, 108 | "lang": "en", 109 | "updated": 0 110 | }, 111 | { 112 | "id": "24b40956-0240-4536-82db-16d39235d9be", 113 | "data": [ 114 | { 115 | "text": "when is ", 116 | "userDefined": false 117 | }, 118 | { 119 | "text": "your", 120 | "userDefined": false 121 | }, 122 | { 123 | "text": " birthday?", 124 | "userDefined": false 125 | } 126 | ], 127 | "isTemplate": false, 128 | "count": 0, 129 | "lang": "en", 130 | "updated": 0 131 | }, 132 | { 133 | "id": "fe95ddff-42a0-4103-9779-52d9198af2a1", 134 | "data": [ 135 | { 136 | "text": "when were ", 137 | "userDefined": false 138 | }, 139 | { 140 | "text": "you", 141 | "userDefined": false 142 | }, 143 | { 144 | "text": " born?", 145 | "userDefined": false 146 | } 147 | ], 148 | "isTemplate": false, 149 | "count": 0, 150 | "lang": "en", 151 | "updated": 0 152 | }, 153 | { 154 | "id": "822e3434-e8f3-4f21-97e4-7ad10be53769", 155 | "data": [ 156 | { 157 | "text": "what is ", 158 | "userDefined": false 159 | }, 160 | { 161 | "text": "your", 162 | "userDefined": false 163 | }, 164 | { 165 | "text": " age?", 166 | "userDefined": false 167 | } 168 | ], 169 | "isTemplate": false, 170 | "count": 0, 171 | "lang": "en", 172 | "updated": 0 173 | }, 174 | { 175 | "id": "32a72d93-2f31-4b84-808f-8953ca907b14", 176 | "data": [ 177 | { 178 | "text": "age of yours", 179 | "userDefined": false 180 | } 181 | ], 182 | "isTemplate": false, 183 | "count": 0, 184 | "lang": "en", 185 | "updated": 0 186 | }, 187 | { 188 | "id": "88e007a1-a735-4c39-8234-87f289d33eb6", 189 | "data": [ 190 | { 191 | "text": "are you ", 192 | "userDefined": false 193 | }, 194 | { 195 | "text": "21", 196 | "meta": "@sys.number", 197 | "alias": "age", 198 | "userDefined": true 199 | }, 200 | { 201 | "text": " years old", 202 | "userDefined": false 203 | } 204 | ], 205 | "isTemplate": false, 206 | "count": 0, 207 | "lang": "en", 208 | "updated": 0 209 | }, 210 | { 211 | "id": "9b98568a-1ec5-46e8-9886-c2a9b611298f", 212 | "data": [ 213 | { 214 | "text": "how old ", 215 | "userDefined": false 216 | }, 217 | { 218 | "text": "are", 219 | "userDefined": false 220 | }, 221 | { 222 | "text": " you", 223 | "userDefined": false 224 | } 225 | ], 226 | "isTemplate": false, 227 | "count": 0, 228 | "lang": "en", 229 | "updated": 0 230 | }, 231 | { 232 | "id": "4c9bd429-6d9a-4252-940c-b1fa66555d56", 233 | "data": [ 234 | { 235 | "text": "your", 236 | "userDefined": false 237 | }, 238 | { 239 | "text": " age", 240 | "userDefined": false 241 | } 242 | ], 243 | "isTemplate": false, 244 | "count": 0, 245 | "lang": "en", 246 | "updated": 0 247 | }, 248 | { 249 | "id": "1be20f35-4ddc-4196-b9e9-6ce32a88d3b0", 250 | "data": [ 251 | { 252 | "text": "what\u0027s your age", 253 | "userDefined": false 254 | } 255 | ], 256 | "isTemplate": false, 257 | "count": 0, 258 | "lang": "en", 259 | "updated": 0 260 | }, 261 | { 262 | "id": "c9c6e58d-4589-4efe-95b5-1ff529a74d37", 263 | "data": [ 264 | { 265 | "text": "how old is your platform", 266 | "userDefined": false 267 | } 268 | ], 269 | "isTemplate": false, 270 | "count": 0, 271 | "lang": "en", 272 | "updated": 0 273 | }, 274 | { 275 | "id": "72114870-a30d-4389-97e0-4da806175f5b", 276 | "data": [ 277 | { 278 | "text": "tell me your age", 279 | "userDefined": false 280 | } 281 | ], 282 | "isTemplate": false, 283 | "count": 0, 284 | "lang": "en", 285 | "updated": 0 286 | }, 287 | { 288 | "id": "0b97b380-0b39-47e1-8dd2-cd6d839f8c64", 289 | "data": [ 290 | { 291 | "text": "I\u0027d like to know your age", 292 | "userDefined": false 293 | } 294 | ], 295 | "isTemplate": false, 296 | "count": 0, 297 | "lang": "en", 298 | "updated": 0 299 | } 300 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.request.job.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "de0ac8cc-7f77-4c82-9f85-e8956d4179c1", 3 | "name": "smalltalk.request.job", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "human", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "It’s your lucky day! I’ll work for free. Just chat with me :)" 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to a flow and keep them engaged. If you don\u0027t know how to get the Flow ID, then please see this --\u003e http://bit.ly/flow-redirects" 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/smalltalk.request.job_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "01d8889a-203a-4c34-86fc-cd2a1d638f8c", 4 | "data": [ 5 | { 6 | "text": "Are ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "you", 11 | "userDefined": false 12 | }, 13 | { 14 | "text": " available for work?", 15 | "userDefined": false 16 | } 17 | ], 18 | "isTemplate": false, 19 | "count": 0, 20 | "lang": "en", 21 | "updated": 0 22 | }, 23 | { 24 | "id": "7a29325e-86ba-44e3-a386-79f93bccbe59", 25 | "data": [ 26 | { 27 | "text": "Are ", 28 | "userDefined": false 29 | }, 30 | { 31 | "text": "you", 32 | "userDefined": false 33 | }, 34 | { 35 | "text": " for hire?", 36 | "userDefined": false 37 | } 38 | ], 39 | "isTemplate": false, 40 | "count": 0, 41 | "lang": "en", 42 | "updated": 0 43 | }, 44 | { 45 | "id": "cea15a31-a4d7-4b74-9ca4-e24796ea39db", 46 | "data": [ 47 | { 48 | "text": "I need help building my bot", 49 | "userDefined": false 50 | } 51 | ], 52 | "isTemplate": false, 53 | "count": 0, 54 | "lang": "en", 55 | "updated": 0 56 | }, 57 | { 58 | "id": "7291b5b2-5e76-4f63-9ca6-30652ddbddb5", 59 | "data": [ 60 | { 61 | "text": "I need a bot", 62 | "userDefined": false 63 | } 64 | ], 65 | "isTemplate": false, 66 | "count": 0, 67 | "lang": "en", 68 | "updated": 0 69 | }, 70 | { 71 | "id": "ec9e6adf-5b0a-436d-9da2-e7d57ecbbf8f", 72 | "data": [ 73 | { 74 | "text": "I need help with my bot", 75 | "userDefined": false 76 | } 77 | ], 78 | "isTemplate": false, 79 | "count": 0, 80 | "lang": "en", 81 | "updated": 0 82 | }, 83 | { 84 | "id": "461d754d-6a53-4ede-ada2-23807cd3bf01", 85 | "data": [ 86 | { 87 | "text": "Will you build my bot?", 88 | "userDefined": false 89 | } 90 | ], 91 | "isTemplate": false, 92 | "count": 0, 93 | "lang": "en", 94 | "updated": 0 95 | }, 96 | { 97 | "id": "7fc2f8d9-e430-4fc1-9a5c-4cb4d160fb69", 98 | "data": [ 99 | { 100 | "text": "I want to hire you", 101 | "userDefined": false 102 | } 103 | ], 104 | "isTemplate": false, 105 | "count": 0, 106 | "lang": "en", 107 | "updated": 0 108 | }, 109 | { 110 | "id": "201c87d3-5be4-40af-9bc8-111d3364a74a", 111 | "data": [ 112 | { 113 | "text": "Can you help me build my bot", 114 | "userDefined": false 115 | } 116 | ], 117 | "isTemplate": false, 118 | "count": 0, 119 | "lang": "en", 120 | "updated": 0 121 | }, 122 | { 123 | "id": "207492af-d3a0-463f-90ad-46a46d8db849", 124 | "data": [ 125 | { 126 | "text": "Can I hire you?", 127 | "userDefined": false 128 | } 129 | ], 130 | "isTemplate": false, 131 | "count": 0, 132 | "lang": "en", 133 | "updated": 0 134 | } 135 | ] -------------------------------------------------------------------------------- /response/intents/smalltalk.request.name.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "1d31f2fd-951d-4931-b2da-5f966a92ba13", 3 | "name": "smalltalk.request.name", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "You can call me whatever you want. I\u0027m hear to serve you" 20 | ], 21 | "condition": "" 22 | }, 23 | { 24 | "type": "4", 25 | "title": "", 26 | "payload": { 27 | "flow": "Replace this message inside the quotes with a Flow ID from ManyChat so you can redirect the user to options for navigating your conversational experience. If you don\u0027t know how to get the Flow ID, then please see Part 2 at https://www.janis.ai/manychat." 28 | }, 29 | "textToSpeech": "", 30 | "lang": "en", 31 | "condition": "" 32 | } 33 | ], 34 | "speech": [] 35 | } 36 | ], 37 | "priority": 500000, 38 | "webhookUsed": false, 39 | "webhookForSlotFilling": false, 40 | "fallbackIntent": false, 41 | "events": [], 42 | "conditionalResponses": [], 43 | "condition": "", 44 | "conditionalFollowupEvents": [] 45 | } -------------------------------------------------------------------------------- /response/intents/social.accounts.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "0f58338d-da90-4ce4-b016-5bb6e8b65377", 3 | "name": "social.accounts", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "e93de075-2aab-43e6-97e6-ba8a2954e7fd", 14 | "name": "social", 15 | "required": false, 16 | "dataType": "@social", 17 | "value": "$social", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "condition": "" 34 | } 35 | ], 36 | "speech": [] 37 | } 38 | ], 39 | "priority": 500000, 40 | "webhookUsed": false, 41 | "webhookForSlotFilling": false, 42 | "fallbackIntent": false, 43 | "events": [], 44 | "conditionalResponses": [], 45 | "condition": "", 46 | "conditionalFollowupEvents": [] 47 | } -------------------------------------------------------------------------------- /response/intents/social.accounts_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "f5ef85c7-8863-45d8-9f09-d05616199152", 4 | "data": [ 5 | { 6 | "text": "Send me your ", 7 | "userDefined": false 8 | }, 9 | { 10 | "text": "insta", 11 | "meta": "@social", 12 | "alias": "social", 13 | "userDefined": false 14 | }, 15 | { 16 | "text": " id ?", 17 | "userDefined": false 18 | } 19 | ], 20 | "isTemplate": false, 21 | "count": 0, 22 | "lang": "en", 23 | "updated": 0 24 | }, 25 | { 26 | "id": "e49b6c72-be57-40c4-887d-fd5d756cb43f", 27 | "data": [ 28 | { 29 | "text": "What is your ", 30 | "userDefined": false 31 | }, 32 | { 33 | "text": "Facebook", 34 | "meta": "@social", 35 | "alias": "social", 36 | "userDefined": false 37 | }, 38 | { 39 | "text": " username ?", 40 | "userDefined": false 41 | } 42 | ], 43 | "isTemplate": false, 44 | "count": 0, 45 | "lang": "en", 46 | "updated": 0 47 | }, 48 | { 49 | "id": "5ef00a20-0845-49c0-841d-213ef014cba6", 50 | "data": [ 51 | { 52 | "text": "What is your ", 53 | "userDefined": false 54 | }, 55 | { 56 | "text": "Facebook", 57 | "meta": "@social", 58 | "alias": "social", 59 | "userDefined": false 60 | }, 61 | { 62 | "text": " id ?", 63 | "userDefined": false 64 | } 65 | ], 66 | "isTemplate": false, 67 | "count": 0, 68 | "lang": "en", 69 | "updated": 0 70 | }, 71 | { 72 | "id": "ef3db023-8cf3-42df-92ec-176bdebd7117", 73 | "data": [ 74 | { 75 | "text": "What is your ", 76 | "userDefined": false 77 | }, 78 | { 79 | "text": "insta", 80 | "meta": "@social", 81 | "alias": "social", 82 | "userDefined": false 83 | }, 84 | { 85 | "text": " id ?", 86 | "userDefined": false 87 | } 88 | ], 89 | "isTemplate": false, 90 | "count": 0, 91 | "lang": "en", 92 | "updated": 0 93 | }, 94 | { 95 | "id": "7fd2b7ee-c720-40fd-9b81-2229f11e5fb5", 96 | "data": [ 97 | { 98 | "text": "What is your ", 99 | "userDefined": false 100 | }, 101 | { 102 | "text": "Instagram", 103 | "meta": "@social", 104 | "alias": "social", 105 | "userDefined": false 106 | }, 107 | { 108 | "text": " id ?", 109 | "userDefined": false 110 | } 111 | ], 112 | "isTemplate": false, 113 | "count": 0, 114 | "lang": "en", 115 | "updated": 0 116 | } 117 | ] -------------------------------------------------------------------------------- /response/intents/user.name.data.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "bdb181a6-c0bb-4739-b477-1529bbe8fa33", 3 | "name": "user.name.data", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [], 12 | "messages": [ 13 | { 14 | "type": "0", 15 | "title": "", 16 | "textToSpeech": "", 17 | "lang": "en", 18 | "speech": [ 19 | "Your name is %nick%." 20 | ], 21 | "condition": "" 22 | } 23 | ], 24 | "speech": [] 25 | } 26 | ], 27 | "priority": 500000, 28 | "webhookUsed": false, 29 | "webhookForSlotFilling": false, 30 | "fallbackIntent": false, 31 | "events": [], 32 | "conditionalResponses": [], 33 | "condition": "", 34 | "conditionalFollowupEvents": [] 35 | } -------------------------------------------------------------------------------- /response/intents/user.name.data_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "20a1f436-968b-421b-a339-f556b4c30bd7", 4 | "data": [ 5 | { 6 | "text": "What is my name tell me", 7 | "userDefined": false 8 | } 9 | ], 10 | "isTemplate": false, 11 | "count": 0, 12 | "lang": "en", 13 | "updated": 0 14 | }, 15 | { 16 | "id": "f4b9a422-a212-45bc-8200-f132cbfac931", 17 | "data": [ 18 | { 19 | "text": "Tell my name", 20 | "userDefined": false 21 | } 22 | ], 23 | "isTemplate": false, 24 | "count": 0, 25 | "lang": "en", 26 | "updated": 0 27 | }, 28 | { 29 | "id": "ab766253-17d4-4cc9-bdb7-20da97df1c24", 30 | "data": [ 31 | { 32 | "text": "Do you know am i", 33 | "userDefined": false 34 | } 35 | ], 36 | "isTemplate": false, 37 | "count": 0, 38 | "lang": "en", 39 | "updated": 0 40 | }, 41 | { 42 | "id": "15169cd9-b3fd-4d00-abb8-b0fc5a4c7e25", 43 | "data": [ 44 | { 45 | "text": "Do you know who I am", 46 | "userDefined": false 47 | } 48 | ], 49 | "isTemplate": false, 50 | "count": 0, 51 | "lang": "en", 52 | "updated": 0 53 | }, 54 | { 55 | "id": "bdde07cd-8aef-4a68-b7b9-dfa7561a1972", 56 | "data": [ 57 | { 58 | "text": "Do you know who I\u0027m ?", 59 | "userDefined": false 60 | } 61 | ], 62 | "isTemplate": false, 63 | "count": 0, 64 | "lang": "en", 65 | "updated": 0 66 | }, 67 | { 68 | "id": "434a776f-e476-4c09-a850-9baa8b0ed70b", 69 | "data": [ 70 | { 71 | "text": "What is my name ?", 72 | "userDefined": false 73 | } 74 | ], 75 | "isTemplate": false, 76 | "count": 0, 77 | "lang": "en", 78 | "updated": 0 79 | } 80 | ] -------------------------------------------------------------------------------- /response/intents/user.name.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "f95d3add-52fb-4119-87f0-e1717181173d", 3 | "name": "user.name", 4 | "auto": true, 5 | "contexts": [], 6 | "responses": [ 7 | { 8 | "resetContexts": false, 9 | "action": "", 10 | "affectedContexts": [], 11 | "parameters": [ 12 | { 13 | "id": "70422297-b384-40aa-8f93-41e47c244e57", 14 | "name": "person", 15 | "required": false, 16 | "dataType": "@sys.person", 17 | "value": "$person", 18 | "defaultValue": "", 19 | "isList": false, 20 | "prompts": [], 21 | "promptMessages": [], 22 | "noMatchPromptMessages": [], 23 | "noInputPromptMessages": [], 24 | "outputDialogContexts": [] 25 | } 26 | ], 27 | "messages": [ 28 | { 29 | "type": "0", 30 | "title": "", 31 | "textToSpeech": "", 32 | "lang": "en", 33 | "speech": [ 34 | "Sorry, I was not able to understand your intention . I\u0027m trying to get better at this thing." 35 | ], 36 | "condition": "" 37 | } 38 | ], 39 | "speech": [] 40 | } 41 | ], 42 | "priority": 500000, 43 | "webhookUsed": false, 44 | "webhookForSlotFilling": false, 45 | "fallbackIntent": false, 46 | "events": [], 47 | "conditionalResponses": [], 48 | "condition": "", 49 | "conditionalFollowupEvents": [] 50 | } -------------------------------------------------------------------------------- /response/intents/user.name_usersays_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "3bd121ec-5402-4dc8-985c-61f0c16ee463", 4 | "data": [ 5 | { 6 | "text": "Am varun", 7 | "meta": "@sys.person", 8 | "alias": "person", 9 | "userDefined": false 10 | } 11 | ], 12 | "isTemplate": false, 13 | "count": 0, 14 | "lang": "en", 15 | "updated": 0 16 | }, 17 | { 18 | "id": "93514042-0f75-4b86-81c4-bcf9c234e574", 19 | "data": [ 20 | { 21 | "text": "I am ", 22 | "userDefined": false 23 | }, 24 | { 25 | "text": "varun", 26 | "meta": "@sys.person", 27 | "alias": "person", 28 | "userDefined": false 29 | } 30 | ], 31 | "isTemplate": false, 32 | "count": 0, 33 | "lang": "en", 34 | "updated": 0 35 | }, 36 | { 37 | "id": "fd2da9f4-a55d-4465-880f-9f40b2af7e5e", 38 | "data": [ 39 | { 40 | "text": "I\u0027m ", 41 | "userDefined": false 42 | }, 43 | { 44 | "text": "Sumith", 45 | "meta": "@sys.person", 46 | "alias": "person", 47 | "userDefined": false 48 | }, 49 | { 50 | "text": " friend", 51 | "userDefined": false 52 | } 53 | ], 54 | "isTemplate": false, 55 | "count": 0, 56 | "lang": "en", 57 | "updated": 0 58 | }, 59 | { 60 | "id": "000bde5e-4880-4f26-bd84-12d7a55bc003", 61 | "data": [ 62 | { 63 | "text": "Rahul sai", 64 | "meta": "@sys.person", 65 | "alias": "person", 66 | "userDefined": false 67 | } 68 | ], 69 | "isTemplate": false, 70 | "count": 0, 71 | "lang": "en", 72 | "updated": 0 73 | }, 74 | { 75 | "id": "e0ee2acd-7c47-4257-be59-fdbabfac89e5", 76 | "data": [ 77 | { 78 | "text": "Suresh", 79 | "meta": "@sys.person", 80 | "alias": "person", 81 | "userDefined": false 82 | } 83 | ], 84 | "isTemplate": false, 85 | "count": 0, 86 | "lang": "en", 87 | "updated": 0 88 | }, 89 | { 90 | "id": "8e3ead1f-e5aa-4989-b6b6-04787c6218c4", 91 | "data": [ 92 | { 93 | "text": "people call me ", 94 | "userDefined": false 95 | }, 96 | { 97 | "text": "john", 98 | "meta": "@sys.person", 99 | "alias": "person", 100 | "userDefined": false 101 | } 102 | ], 103 | "isTemplate": false, 104 | "count": 0, 105 | "lang": "en", 106 | "updated": 0 107 | }, 108 | { 109 | "id": "0dd18137-875a-41dd-8f34-a4d1af023abb", 110 | "data": [ 111 | { 112 | "text": "my name ", 113 | "userDefined": false 114 | }, 115 | { 116 | "text": "sumith", 117 | "meta": "@sys.person", 118 | "alias": "person", 119 | "userDefined": false 120 | } 121 | ], 122 | "isTemplate": false, 123 | "count": 0, 124 | "lang": "en", 125 | "updated": 0 126 | }, 127 | { 128 | "id": "5dfde2af-e671-4864-9533-52119dd434ac", 129 | "data": [ 130 | { 131 | "text": "Name ", 132 | "userDefined": false 133 | }, 134 | { 135 | "text": "grace", 136 | "meta": "@sys.person", 137 | "alias": "person", 138 | "userDefined": false 139 | } 140 | ], 141 | "isTemplate": false, 142 | "count": 0, 143 | "lang": "en", 144 | "updated": 0 145 | }, 146 | { 147 | "id": "f4de36a6-4d99-41da-aba1-f844092c6f5c", 148 | "data": [ 149 | { 150 | "text": "My name is ", 151 | "userDefined": false 152 | }, 153 | { 154 | "text": "grace", 155 | "meta": "@sys.person", 156 | "alias": "person", 157 | "userDefined": false 158 | } 159 | ], 160 | "isTemplate": false, 161 | "count": 0, 162 | "lang": "en", 163 | "updated": 0 164 | } 165 | ] -------------------------------------------------------------------------------- /response/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "response", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "version": "1.0.0" 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /response/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } --------------------------------------------------------------------------------