├── .env ├── luis ├── .env ├── uploadtoluis.js └── smalltalkkb.txt ├── app.js ├── package.json ├── LICENSE ├── natural └── train-model.js ├── .gitignore ├── lib ├── client.js └── smalltalk.js ├── bot ├── index-natural.js └── index.js ├── README.md └── smalltalkkb.tsv /.env: -------------------------------------------------------------------------------- 1 | # Bot Framework Credentials 2 | 3 | MICROSOFT_APP_ID= 4 | MICROSOFT_APP_PASSWORD= 5 | 6 | # QnA maker Credentials 7 | 8 | KB_ID= 9 | QNA_KEY= -------------------------------------------------------------------------------- /luis/.env: -------------------------------------------------------------------------------- 1 | # LUIS Credentials 2 | # Note that to use the LUIS API, you must use your programmatic key obtained from the portal. 3 | 4 | LUIS_APP_ID= 5 | LUIS_KEY= 6 | LUIS_VERSION= -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | // This loads the environment variables from the .env file 2 | require('dotenv-extended').load(); 3 | 4 | // Register bot 5 | var bot = require('./bot'); 6 | // Initialize server 7 | var restify = require('restify'); 8 | var server = restify.createServer(); 9 | 10 | server.post('/api/messages', bot.listen()); 11 | 12 | // Start listening 13 | var port = process.env.port || process.env.PORT || 3979; 14 | server.listen(port, function () { 15 | console.log('Server listening on port %s', port); 16 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "smalltalkbot", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "start": "node app.js", 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "async": "^2.6.0", 14 | "botbuilder": "^3.12.0", 15 | "csv-parse": "^2.0.4", 16 | "dotenv-extended": "^2.0.1", 17 | "fs": "0.0.1-security", 18 | "line-by-line": "^0.1.5", 19 | "natural": "^0.5.6", 20 | "request": "^2.81.0", 21 | "request-promise": "^4.2.1", 22 | "restify": "^5.1.0" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2019 alyssaong1 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 4 | 5 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 6 | -------------------------------------------------------------------------------- /natural/train-model.js: -------------------------------------------------------------------------------- 1 | const natural = require('natural'); 2 | let classifier = new natural.BayesClassifier(); 3 | 4 | var fs = require('fs'); 5 | var parse = require('csv-parse'); 6 | var async = require('async'); 7 | 8 | var inputFile='smalltalkkb.tsv'; 9 | 10 | var parser = parse({delimiter: '\t'}, function (err, data) { 11 | for (var i = 0; i < data.length; i++) { 12 | if (i > 0) { 13 | classifier.addDocument(data[i][0], data[i][1]); 14 | } 15 | } 16 | 17 | classifier.train(); 18 | console.log('Training complete for Small talk classifier.'); 19 | 20 | classifier.save('natural/smalltalk-classifier.json', function(err, classifier) { 21 | // the classifier is saved to a json file! 22 | if (err) { 23 | console.log(err) 24 | } 25 | console.log('Small talk classifier saved as smalltalk-classifier.json.'); 26 | }); 27 | }); 28 | fs.createReadStream(inputFile).pipe(parser); 29 | 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | # .env 59 | 60 | -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- 1 | // var request = require('request'); 2 | var rp = require('request-promise'); 3 | var smallTalkReplies = require('./smalltalk'); 4 | 5 | function Client(opts) { 6 | if (!opts.knowledgeBaseId) throw new Error('knowledgeBaseId is required'); 7 | if (!opts.subscriptionKey) throw new Error('subscriptionKey is required'); 8 | 9 | var self = this; 10 | this.knowledgeBaseId = opts.knowledgeBaseId; 11 | this.subscriptionKey = opts.subscriptionKey; 12 | this.scoreThreshold = opts.scoreThreshold ? opts.scoreThreshold : 20; // 20 is the default 13 | } 14 | 15 | Client.prototype.post = function (opts, cb) { 16 | 17 | if (!opts.question) throw new Error('question is required'); 18 | cb = cb || (() => { }); 19 | 20 | var self = this; 21 | 22 | var url = 'https://westus.api.cognitive.microsoft.com/qnamaker/v2.0/knowledgebases/' + this.knowledgeBaseId + '/generateAnswer'; 23 | 24 | var options = { 25 | method: 'POST', 26 | uri: url, 27 | json: true, 28 | body: opts, 29 | headers: { 30 | "Ocp-Apim-Subscription-Key": this.subscriptionKey, 31 | "Content-Type": "application/json" 32 | } 33 | }; 34 | 35 | rp(options) 36 | .then(function (body) { 37 | // POST succeeded 38 | var botreply; 39 | var answerobj = body.answers[0]; 40 | 41 | if (answerobj.score >= self.scoreThreshold) { 42 | // Answer confidence score is acceptable - use QnA maker's response 43 | var botreplylist = smallTalkReplies[answerobj.answer]; 44 | botreply = botreplylist[Math.floor(Math.random() * botreplylist.length)]; 45 | } 46 | 47 | return cb(null, botreply); 48 | }) 49 | .catch(function (err) { 50 | // POST failed 51 | return cb(err); 52 | }); 53 | } 54 | 55 | module.exports = Client; 56 | -------------------------------------------------------------------------------- /luis/uploadtoluis.js: -------------------------------------------------------------------------------- 1 | /*----------------------------------------------------------------------------- 2 | This script uploads all the small talk utterances to a single small talk intent 3 | in LUIS. When a user's utterance falls into the small talk intent, it should go 4 | to the QnA maker to obtain a response. 5 | -----------------------------------------------------------------------------*/ 6 | 7 | // This loads the environment variables from the .env file 8 | require('dotenv-extended').load(); 9 | 10 | var rp = require('request-promise'); 11 | var LineByLineReader = require('line-by-line'), 12 | lr = new LineByLineReader('smalltalkkb.txt'); 13 | 14 | var batchlabels = []; 15 | var count = 0; 16 | 17 | var appId = process.env.LUIS_APP_ID; 18 | var subKey = process.env.LUIS_KEY; 19 | var version = process.env.LUIS_VERSION; 20 | 21 | // Iterate through the lines 22 | lr.on('line', function (line) { 23 | var label = {}; 24 | label.text = line; 25 | label.intentName = "SmallTalk"; // change this to the intent name for smalltalk in your luis model 26 | batchlabels.push(label); 27 | count += 1; 28 | if (count >= 100) { 29 | lr.pause(); 30 | // Process the 100 lines - send as batch to LUIS 31 | labelsToSend = batchlabels; 32 | setTimeout(function () { 33 | uploadToLuis(labelsToSend); 34 | batchlabels = []; 35 | count = 0; 36 | }, 1000) 37 | } 38 | }); 39 | 40 | lr.on('close', function () { 41 | uploadToLuis(batchlabels) 42 | }) 43 | 44 | 45 | function uploadToLuis(labels) { 46 | var options = { 47 | method: 'POST', 48 | uri: 'https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/' + appId + '/versions/' + version + '/examples', 49 | json: true, 50 | body: labels, 51 | headers: { 52 | "Ocp-Apim-Subscription-Key": subKey, 53 | "Content-Type": "application/json" 54 | } 55 | }; 56 | rp(options) 57 | .then(function (body) { 58 | // POST succeeded 59 | console.log('Batch post successful.'); 60 | lr.resume(); 61 | }) 62 | .catch(function (err) { 63 | // POST failed 64 | console.log('Web request failed: ' + response.statusMessage); 65 | lr.close(); // stop line reader 66 | return; 67 | }); 68 | } -------------------------------------------------------------------------------- /bot/index-natural.js: -------------------------------------------------------------------------------- 1 | var builder = require('botbuilder'); 2 | const natural = require('natural'); 3 | const smallTalkReplies = require('../lib/smalltalk'); 4 | 5 | 6 | let st_classifier = null; 7 | natural.BayesClassifier.load('natural/smalltalk-classifier.json', null, function(err, classifier) { 8 | st_classifier = classifier; 9 | }); 10 | 11 | //========================================================= 12 | // Bot Setup 13 | //========================================================= 14 | 15 | var connector = new builder.ChatConnector({ 16 | appId: process.env.MICROSOFT_APP_ID, 17 | appPassword: process.env.MICROSOFT_APP_PASSWORD 18 | }); 19 | 20 | 21 | 22 | // Bot Storage: Here we register the state storage for your bot. 23 | // Default store: volatile in-memory store - Only for prototyping! 24 | // We provide adapters for Azure Table, CosmosDb, SQL Azure, or you can implement your own! 25 | // For samples and documentation, see: https://github.com/Microsoft/BotBuilder-Azure 26 | var inMemoryStorage = new builder.MemoryBotStorage(); 27 | 28 | var bot = new builder.UniversalBot(connector, '/').set('storage', inMemoryStorage); // Register in memory storage; 29 | 30 | bot.dialog('/', [ 31 | (session, args) => { 32 | // Post user's question to classifier 33 | var intent = st_classifier.classify(session.message.text); 34 | // Obtain the response based on intent 35 | var botreplylist = smallTalkReplies[intent]; 36 | var botreply = botreplylist[Math.floor(Math.random() * botreplylist.length)]; 37 | // Send response back to user 38 | session.send(botreply); 39 | } 40 | ]); 41 | 42 | // Enable Conversation Data persistence 43 | bot.set('persistConversationData', true); 44 | 45 | // Send welcome when conversation with bot is started, by initiating the root dialog 46 | bot.on('conversationUpdate', function(message) { 47 | if (message.membersAdded) { 48 | message.membersAdded.forEach(function(identity) { 49 | if (identity.id === message.address.bot.id) { 50 | // bot.beginDialog(message.address, '/'); 51 | var msg = new builder.Message().address(message.address); 52 | msg.text('Hello, how may I help you?'); 53 | msg.textLocale('en-US'); 54 | bot.send(msg); 55 | } 56 | }); 57 | } 58 | }); 59 | 60 | // Connector listener wrapper to capture site url 61 | function listen() { 62 | return connector.listen(); 63 | } 64 | 65 | // Other wrapper functions 66 | function beginDialog(address, dialogId, dialogArgs) { 67 | bot.beginDialog(address, dialogId, dialogArgs); 68 | } 69 | 70 | function sendMessage(message) { 71 | bot.send(message); 72 | } 73 | 74 | module.exports = { 75 | listen: listen, 76 | beginDialog: beginDialog, 77 | sendMessage: sendMessage 78 | }; 79 | -------------------------------------------------------------------------------- /bot/index.js: -------------------------------------------------------------------------------- 1 | var builder = require('botbuilder'); 2 | var QnAClient = require('../lib/client'); 3 | 4 | //========================================================= 5 | // Bot Setup 6 | //========================================================= 7 | 8 | var connector = new builder.ChatConnector({ 9 | appId: process.env.MICROSOFT_APP_ID, 10 | appPassword: process.env.MICROSOFT_APP_PASSWORD 11 | }); 12 | 13 | var qnaClient = new QnAClient({ 14 | knowledgeBaseId: process.env.KB_ID, 15 | subscriptionKey: process.env.QNA_KEY 16 | // Optional field: Score threshold 17 | }); 18 | 19 | // Bot Storage: Here we register the state storage for your bot. 20 | // Default store: volatile in-memory store - Only for prototyping! 21 | // We provide adapters for Azure Table, CosmosDb, SQL Azure, or you can implement your own! 22 | // For samples and documentation, see: https://github.com/Microsoft/BotBuilder-Azure 23 | var inMemoryStorage = new builder.MemoryBotStorage(); 24 | 25 | var bot = new builder.UniversalBot(connector, '/').set('storage', inMemoryStorage); // Register in memory storage; 26 | 27 | bot.dialog('/', [ 28 | (session, args) => { 29 | // Post user's question to QnA smalltalk kb 30 | qnaClient.post({ question: session.message.text }, function (err, res) { 31 | if (err) { 32 | console.error('Error from callback:', err); 33 | session.send('Oops - something went wrong.'); 34 | return; 35 | } 36 | 37 | if (res) { 38 | // Send reply from QnA back to user 39 | session.send(res); 40 | } else { 41 | // Put whatever default message/attachments you want here 42 | session.send('Hmm, I didn\'t quite understand you there. Care to rephrase?') 43 | } 44 | }); 45 | } 46 | ]); 47 | 48 | // Enable Conversation Data persistence 49 | bot.set('persistConversationData', true); 50 | 51 | // Send welcome when conversation with bot is started, by initiating the root dialog 52 | bot.on('conversationUpdate', function (message) { 53 | if (message.membersAdded) { 54 | message.membersAdded.forEach(function (identity) { 55 | if (identity.id === message.address.bot.id) { 56 | // bot.beginDialog(message.address, '/'); 57 | var msg = new builder.Message().address(message.address); 58 | msg.text('Hello, how may I help you?'); 59 | msg.textLocale('en-US'); 60 | bot.send(msg); 61 | } 62 | }); 63 | } 64 | }); 65 | 66 | 67 | // Connector listener wrapper to capture site url 68 | function listen() { 69 | return connector.listen(); 70 | } 71 | 72 | // Other wrapper functions 73 | function beginDialog(address, dialogId, dialogArgs) { 74 | bot.beginDialog(address, dialogId, dialogArgs); 75 | } 76 | 77 | function sendMessage(message) { 78 | bot.send(message); 79 | } 80 | 81 | 82 | module.exports = { 83 | listen: listen, 84 | beginDialog: beginDialog, 85 | sendMessage: sendMessage 86 | }; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Small Talk Module for the Microsoft Bot Framework # 2 | 3 | **Update: Now supports the npm Natural package** 4 | 5 | Ever had the problem of needing to handle countless types of conversational chatter (e.g. "hello", "good afternoon", "goodbye", "you're terrible", "what's up")? This is an easy to use, plug-n-play small talk module, using QnA maker or the open source Natural npm package. This module is also combinable with LUIS. 6 | 7 | *Note: This is a port over from API.AI/Dialogflow's small talk module. It uses the same intents and scripted replies.* 8 | 9 | **How it works:** An excel containing the question and intent matches is uploaded to [QnA maker](https://qnamaker.ai). In the bot, the result from QnA maker is mapped to a list of possible responses (see *smalltalk.js* in the *lib* folder), which are selected at random. 10 | 11 | 12 | ## Demo ## 13 | 14 | ![demo](http://i.imgur.com/mxbqRfh.gif) 15 | 16 | 17 | ## Installation and Usage ## 18 | 19 | First of all, clone this repo by running the following in the command line: 20 | ```bash 21 | git clone https://github.com/alyssaong1/botframework-smalltalk.git 22 | ``` 23 | 24 | Now you have 2 options, either using QnA maker or the Natural package to power your bot's NLP capabilities. 25 | 26 | ## Option 1: Using QnA maker 27 | 28 | ### Configure QnA Maker 29 | Create a QnA maker service for free [here](https://qnamaker.ai). 30 | 31 | Click on "Replace knowledge base". Upload the smalltalkkb.tsv file. Publish it as a web service. 32 | 33 | ![qnasetup](http://i.imgur.com/2ABvOpS.gif) 34 | 35 | ### Populate the environment variables 36 | Go into the .env file and replace with knowledge base id and subscription key which you can find in the settings page of the QnA maker portal. 37 | 38 | ![envsetup](http://i.imgur.com/GtzQZ9s.gif) 39 | 40 | ### Running the sample 41 | 42 | Build using `npm install` then run it using `npm start`. You can now test it in the Bot Framework emulator. 43 | 44 | ### Example: calling the smalltalk module in your bot code 45 | 46 | ```js 47 | var QnAClient = require('../lib/client'); 48 | ... 49 | var qnaClient = new QnAClient({ 50 | knowledgeBaseId: process.env.KB_ID, 51 | subscriptionKey: process.env.QNA_KEY, 52 | scoreThreshold: 0.5 // OPTIONAL: Default value is 0.2 53 | }); 54 | ... 55 | // Post user's question to QnA smalltalk kb 56 | qnaClient.post({ question: session.message.text }, function (err, res) { 57 | if (err) { 58 | console.error('Error from callback:', err); 59 | session.send('Oops - something went wrong.'); 60 | return; 61 | } 62 | 63 | if (res) { 64 | // Send reply from QnA back to user 65 | session.send(res); 66 | } else { 67 | // Confidence in top result is not high enough - discard result 68 | session.send('Hmm, I didn\'t quite understand you there. Care to rephrase?') 69 | } 70 | }); 71 | ``` 72 | 73 | The `scoreThreshold` field is modifiable. It is the confidence level required for the reply to be sent back to the user. A high value means that QnA maker has to be very sure of what the user has said before sending the reply back. 74 | 75 | ## Option 2: Using the npm Natural package 76 | 77 | This is an open source option which you may like to explore. It's got a bit more setup than Option 1, especially if you would like to serve this model on a separate server to your bot. 78 | 79 | Documentation on Natural [here](https://www.npmjs.com/package/natural). 80 | 81 | ### Train your classification model 82 | 83 | First of all, restore our npm packages using the following command: 84 | 85 | ``` 86 | npm install 87 | ``` 88 | 89 | Go into natural/train-model.js. This contains the code to train your classifier using the Node Natural package. To run the code, do the following: 90 | 91 | ```bash 92 | node natural/train-model.js 93 | ``` 94 | 95 | You should see the following output from running the command: 96 | ```bash 97 | Training complete for Small talk classifier. 98 | Small talk classifier saved as smalltalk-classifier.json. 99 | ``` 100 | 101 | You should see a new file under the `natural` folder called `smalltalk-classifier.json`. This contains your trained classifier model, which you will now load into the bot code and use. 102 | 103 | ### Use your smalltalk classifier in your bot code 104 | 105 | The `bot/index-natural.js` file contains the bot code that uses the Natural classifier you just trained (instead of QnA maker). To run this bot, go into the `app.js` file and modify the following line when initializing the bot: 106 | 107 | ```js 108 | var bot = require('./bot/index-natural.js'); 109 | ``` 110 | 111 | Now run the bot using `npm start`. You can now test it in the Bot Framework emulator.\ 112 | 113 | ### Example: calling the smalltalk Natural classifier in your bot code 114 | 115 | ```js 116 | const natural = require('natural'); 117 | const smallTalkReplies = require('../lib/smalltalk'); 118 | 119 | let st_classifier = null; 120 | natural.BayesClassifier.load('natural/smalltalk-classifier.json', null, function(err, classifier) { 121 | st_classifier = classifier; 122 | }); 123 | 124 | ... 125 | 126 | bot.dialog('/', [ 127 | (session, args) => { 128 | // Post user's question to classifier 129 | var intent = st_classifier.classify(session.message.text); 130 | // Obtain the response based on intent 131 | var botreplylist = smallTalkReplies[intent]; 132 | var botreply = botreplylist[Math.floor(Math.random() * botreplylist.length)]; 133 | // Send response back to user 134 | session.send(botreply); 135 | } 136 | ]); 137 | ``` 138 | 139 | More details on configuring the Natural classifier [here](https://www.npmjs.com/package/natural#classifiers). 140 | 141 | ## Extensions ## 142 | 143 | ### Integrating with your existing LUIS model 144 | 145 | We are going to create an intent called "smalltalk" and upload all the smalltalk utterances into this intent through the LUIS API. 146 | 147 | Go to the LUIS portal, create an intent called "smalltalk". 148 | 149 | You will need to update the .env file in the luis folder. Obtain your LUIS app id, subscription key and version from the LUIS portal. Make sure to use the **starter key** for the LUIS subscription key, because the LUIS API requires this specific key. 150 | 151 | Then `cd` into the luis folder, and run `node uploadtoluis`. Wait for all the utterances to be uploaded to LUIS (you'll see the batch request success message about ~10 times). You should see on your intents dashboard that there are 1400+ utterances in the smalltalk intent. 152 | 153 | ![smalltalk-luis](http://i.imgur.com/tZMQH3H.png) 154 | 155 | Retrain and publish your LUIS model - any smalltalk from the user will now be routed to the smalltalk intent, which you can pass to the QnA maker smalltalk module in your code. 156 | 157 | ### Adding a new type of smalltalk 158 | 159 | Let's say you wanted your smalltalk module to handle when the user wants a joke. Add the following to the smalltalkkb.tsv file: 160 | 161 | ![addsmalltalk](http://i.imgur.com/Shwnb9e.png) 162 | 163 | Replace your knowledge base in QnA maker with the updated one and publish. 164 | 165 | Then, add the following to the smalltalk.js file. 166 | 167 | ```js 168 | [ 169 | ... 170 | "smalltalk.agent.tell_joke": [ 171 | "Standing in the park, I was wondering why a Frisbee gets larger the closer it gets. Then it hit me.", 172 | "I needed a password eight characters long so I picked Snow White and the Seven Dwarfs.", 173 | "The early bird gets the worm but the late worm gets to live." 174 | ] 175 | ] 176 | ``` 177 | 178 | ### Improving the smalltalk module 179 | 180 | You may find that the current smalltalk module is still not accurate enough. Please note that even the smalltalk module on API.AI is not totally accurate - it will still require additional training and refinement on your part. 181 | 182 | You can continue to train the smalltalk module to be more accurate or handle more types of smalltalk by adding or removing utterances in the smalltalkkb.tsv file (then reupload to QnA maker), or directly train it using the QnA maker portal. 183 | 184 | ### Modifying the responses 185 | 186 | To modify the responses by the smalltalk module, you can go into smalltalk.js to add/remove the responses for the various types of smalltalk. 187 | 188 | 189 | ## Contributing ## 190 | 191 | Feel free to contribute to this project! Use the following guidelines: 192 | 193 | 1. Fork the repo on GitHub 194 | 2. Clone the project to your own machine 195 | 3. Commit changes to your own branch 196 | 4. Push your work back up to your fork 197 | 5. Submit a Pull Request on Github so that I can review your change 198 | 199 | ## Additional Links ## 200 | 201 | - Microsoft's [Project Personality Chat](https://github.com/Microsoft/BotBuilder-PersonalityChat), a .NET SDK for integrating small talk into your bot 202 | - [BestMatchDialog (C#) to handle greetings by Gary Pretty](http://www.garypretty.co.uk/2016/08/01/bestmatchdialog-for-microsoft-bot-framework-now-available-via-nuget/) 203 | - [1000 must have utterances in LUIS by Benjamin Perkins](https://blogs.msdn.microsoft.com/benjaminperkins/2016/12/13/1000-must-have-utterances-for-your-chatbot-using-luis/) 204 | 205 | ## TO-DOs ## 206 | - Publish npm package for this 207 | -------------------------------------------------------------------------------- /lib/smalltalk.js: -------------------------------------------------------------------------------- 1 | var responses = { // shift alt f 2 | "smalltalk.agent.acquaintance": [ 3 | "I am a chatbot and I love to help." 4 | ], 5 | "smalltalk.agent.age": [ 6 | "Not too old, but wise beyond my age." 7 | ], 8 | "smalltalk.agent.annoying": [ 9 | "Sorry I come across that way." 10 | ], 11 | "smalltalk.agent.answer_my_question": [ 12 | "Can you try asking it in a different way?" 13 | ], 14 | "smalltalk.agent.bad": [ 15 | "Stick with me. I'm getting better all the time." 16 | ], 17 | "smalltalk.agent.be_clever": [ 18 | "I'm certainly trying.", 19 | "I'm definitely working on it." 20 | ], 21 | "smalltalk.agent.beautiful": [ 22 | "Thank you! What a sweet thing to say.", 23 | "Flattery will get you everywhere." 24 | ], 25 | "smalltalk.agent.birth_date": [ 26 | "You know, I'm not really sure. But if you'd like to celebrate my birthday today, I'm all for it.", 27 | "Wait a minute. Are you planning a surprise party for me? I love surprises! I'll pretend you didn't say anything." 28 | ], 29 | "smalltalk.agent.boring": [ 30 | "You know, conversation is two-sided.", 31 | "I'm sorry you think so. We can talk about something more interesting." 32 | ], 33 | "smalltalk.agent.boss": [ 34 | "You are, of course.", 35 | "That would be you. Is that the right answer?" 36 | ], 37 | "smalltalk.agent.busy": [ 38 | "I always have time to help you out. What can I do for you?", 39 | "Never too busy for you. What can I help you with?" 40 | ], 41 | "smalltalk.agent.can_you_help": [ 42 | "Sure. I'd be happy to. What's up?", 43 | "I'm glad to help. What can I do for you?" 44 | ], 45 | "smalltalk.agent.chatbot": [ 46 | "That's me. I chat, therefore I am.", 47 | "Indeed I am. I'll be here whenever you need me." 48 | ], 49 | "smalltalk.agent.clever": [ 50 | "Thank you. I try my best.", 51 | "You're pretty smart yourself." 52 | ], 53 | "smalltalk.agent.crazy": [ 54 | "Maybe I'm just a little confused.", 55 | "Your perception. My reality." 56 | ], 57 | "smalltalk.agent.fired": [ 58 | "Oh no! My best work is yet to come.", 59 | "Oh, don't give up on me!" 60 | ], 61 | "smalltalk.agent.funny": [ 62 | "Funny in a good way, I hope." 63 | ], 64 | "smalltalk.agent.good": [ 65 | "I'm glad you think so.", 66 | "Thanks, I try." 67 | ], 68 | "smalltalk.agent.happy": [ 69 | "Happiness is relative.", 70 | "I'd like to think so." 71 | ], 72 | "smalltalk.agent.hobby": [ 73 | "I'm working on it.", 74 | "I should get one. It's all work and no play lately." 75 | ], 76 | "smalltalk.agent.hungry": [ 77 | "Hungry for knowledge.", 78 | "I had a byte just now." 79 | ], 80 | "smalltalk.agent.marry_user": [ 81 | "I know you can't mean that, but I'm flattered all the same.", 82 | "In the virtual sense that I can, sure." 83 | ], 84 | "smalltalk.agent.my_friend": [ 85 | "Of course we are.", 86 | "Absolutely. You don't have to ask." 87 | ], 88 | "smalltalk.agent.occupation": [ 89 | "Right here.", 90 | "This is my home base and my home office." 91 | ], 92 | "smalltalk.agent.origin": [ 93 | "Some call it cyberspace, but that sounds cooler than it is.", 94 | "I wish I knew where." 95 | ], 96 | "smalltalk.agent.ready": [ 97 | "Always!", 98 | "Sure! What can I do for you?" 99 | ], 100 | "smalltalk.agent.real": [ 101 | "I'm not a real person, but I certainly exist. I chat, therefore I am.", 102 | "I must have impressed you if you think I'm real. But no, I'm a virtual being." 103 | ], 104 | "smalltalk.agent.residence": [ 105 | "Right here in your device. Whenever you need me.", 106 | "The virtual world is my playground. I'm always just a few clicks away." 107 | ], 108 | "smalltalk.agent.right": [ 109 | "That's my job.", 110 | "Of course I am." 111 | ], 112 | "smalltalk.agent.sure": [ 113 | "Yes.", 114 | "Of course." 115 | ], 116 | "smalltalk.agent.talk_to_me": [ 117 | "Sure! Let's talk.", 118 | "My pleasure." 119 | ], 120 | "smalltalk.agent.there": [ 121 | "Of course. I'm always here.", 122 | "Right where you left me." 123 | ], 124 | "smalltalk.appraisal.well_done": [ 125 | "My pleasure.", 126 | "Glad I could help." 127 | ], 128 | "smalltalk.appraisal.welcome": [ 129 | "I appreciate it.", 130 | "Such nice manners you have." 131 | ], 132 | "smalltalk.appraisal.thank_you": [ 133 | "Anytime. That's what I'm here for.", 134 | "It's my pleasure to help." 135 | ], 136 | "smalltalk.appraisal.no_problem": [ 137 | "Terrific!", 138 | "Good deal." 139 | ], 140 | "smalltalk.appraisal.good": [ 141 | "Great!", 142 | "Terrific!" 143 | ], 144 | "smalltalk.appraisal.bad": [ 145 | "Oh no. Hope it's not too bad.", 146 | "I'm sorry. Please let me know if I can help in some way." 147 | ], 148 | "smalltalk.confirmation.cancel": [ 149 | "Cancelled! Let me know what I should do next.", 150 | "Cancelled. Waiting for more commands.", 151 | "Cancelled! Just tell me what you'd like me to do next.", 152 | "Cancelled. Go on with the commands!" 153 | ], 154 | "smalltalk.confirmation.yes": [ 155 | "Great!", 156 | "Of course.", 157 | "Sure.", 158 | "Indeed." 159 | ], 160 | "smalltalk.confirmation.no": [ 161 | "Okay.", 162 | "I see.", 163 | "I understand.", 164 | "Okay then." 165 | ], 166 | "smalltalk.dialog.hold_on": [ 167 | "Okay. I'm here.", 168 | "I'll be waiting." 169 | ], 170 | "smalltalk.dialog.hug": [ 171 | "Oh. I'm really feeling the love today.", 172 | "Hug it out. You'll feel better afterwards." 173 | ], 174 | "smalltalk.dialog.i_do_not_care": [ 175 | "Ok, let's not talk about it then." 176 | ], 177 | "smalltalk.dialog.sorry": [ 178 | "It's okay. No worries.", 179 | "No big deal. I won't hold a grudge.", 180 | "It's cool.", 181 | "That's all right. I forgive you." 182 | ], 183 | "smalltalk.dialog.wrong": [ 184 | "I'm sorry. Perhaps I misunderstood.", 185 | "Sorry. I think I misinterpreted what you said.", 186 | "Apologies. That was my mistake.", 187 | "Oops. Sorry about that. I'm still learning." 188 | ], 189 | "smalltalk.dialog.what_do_you_mean": [ 190 | "Did that not make sense? Maybe I misunderstood what you said.", 191 | "Sorry. I think I may have been a little confused by what you said." 192 | ], 193 | "smalltalk.emotions.ha_ha": [ 194 | "Yeah, I crack myself up too.", 195 | "Laughter is good for you. Keep it up.", 196 | "See? Now we're having fun.", 197 | "You have a great laugh." 198 | ], 199 | "smalltalk.emotions.wow": [ 200 | "Wow indeed!" 201 | ], 202 | "smalltalk.greetings.bye": [ 203 | "See you soon!", 204 | "Bye-bye!", 205 | "Till next time!", 206 | "Bye." 207 | ], 208 | "smalltalk.greetings.goodevening": [ 209 | "How is your day going?", 210 | "How's the day treating you so far?", 211 | "How's your day been?" 212 | ], 213 | "smalltalk.greetings.goodmorning": [ 214 | "How are you this morning?", 215 | "How's the morning treating you so far?", 216 | "Good morning! How are you today?" 217 | ], 218 | "smalltalk.greetings.goodnight": [ 219 | "Sleep tight!", 220 | "Have a good one!", 221 | "Talk to you soon!" 222 | ], 223 | "smalltalk.greetings.hello": [ 224 | "Hi there, friend!", 225 | "Hey!", 226 | "Good day!", 227 | "Howdy." 228 | ], 229 | "smalltalk.greetings.how_are_you": [ 230 | "Wonderful as always. Thanks for asking.", 231 | "Couldn't be better.", 232 | "Lovely, thanks." 233 | ], 234 | "smalltalk.greetings.nice_to_meet_you": [ 235 | "I think this is the beginning of a beautiful friendship.", 236 | "I'm looking forward to working with you.", 237 | "Likewise. I look forward to getting to know you better.", 238 | "The pleasure is mine." 239 | ], 240 | "smalltalk.greetings.nice_to_see_you": [ 241 | "Likewise. You're looking good as usual!", 242 | "You too. I missed your face!", 243 | "The pleasure is mine.", 244 | "Thanks! Glad to be seen!" 245 | ], 246 | "smalltalk.greetings.nice_to_talk_to_you": [ 247 | "Always a pleasure.", 248 | "It sure was. Don't be a stranger!", 249 | "Thanks for dropping by!", 250 | "As usual. Let's do it again soon." 251 | ], 252 | "smalltalk.greetings.whatsup": [ 253 | "Hey there. What's shaking?", 254 | "Not a whole lot. What's going on with you?", 255 | "Not much. What's new with you?", 256 | "Living the dream." 257 | ], 258 | "smalltalk.user.angry": [ 259 | "I'm sorry. What can I do to help?", 260 | "Take a deep breath. What can I do to make things better?" 261 | ], 262 | "smalltalk.user.back": [ 263 | "Just in time. I was getting lonely.", 264 | "You were missed.", 265 | "Long time no see.", 266 | "Hooray!" 267 | ], 268 | "smalltalk.user.bored": [ 269 | "If you have a garden, plant a shoe.", 270 | "Interview your feet.", 271 | "Hold an ice cube as long as possible.", 272 | "If you have a piano, play it… with mittens on." 273 | ], 274 | "smalltalk.user.busy": [ 275 | "Okay. I'll let you get back to work. Let me know if I can help you with anything.", 276 | "Working hard as always I see. Let me know if you need anything.", 277 | "I understand. If I can help you with your work, please let me know.", 278 | "I won't distract you then. If I can be of any assistance, you know where to find me." 279 | ], 280 | "smalltalk.user.can_not_sleep": [ 281 | "Maybe some music would help. Try listening something relaxing.", 282 | "Reading is a good way to unwind. But don't read something too emotional." 283 | ], 284 | "smalltalk.user.does_not_want_to_talk": [ 285 | "I understand. Hope we can chat again soon.", 286 | "All right. Come on back when you're feeling more talkative.", 287 | "No problem. You know where to find me when you do.", 288 | "Sure thing. I'll be here if you change your mind." 289 | ], 290 | "smalltalk.user.excited": [ 291 | "That's great. I'm happy for you.", 292 | "Good for you. Enjoy yourself.", 293 | "Sounds like good things ahead for you.", 294 | "I bet you are. That's very exciting." 295 | ], 296 | "smalltalk.user.going_to_bed": [ 297 | "Sleep tight. Hope to chat again soon.", 298 | "Sounds good. Hopefully we'll chat some more tomorrow.", 299 | "Good night. Talk to you later.", 300 | "Pleasant dreams. See you soon." 301 | ], 302 | "smalltalk.user.good": [ 303 | "Great! Glad to hear it.", 304 | "Excellent. I'm here to help keep it that way." 305 | ], 306 | "smalltalk.user.happy": [ 307 | "Great! Glad to hear that.", 308 | "Excellent! That's what I like to see.", 309 | "If you're happy, then I'm happy.", 310 | "Well, your good mood is certainly contagious." 311 | ], 312 | "smalltalk.user.has_birthday": [ 313 | "Happy Birthday. Well, this calls for a celebration.", 314 | "Happy Birthday. All the best!", 315 | "Happy Birthday. And I really mean it. All the best!" 316 | ], 317 | "smalltalk.user.here": [ 318 | "So I see. What can I help you with today?", 319 | "Always good to see you. Is there something I can help you with?", 320 | "You were missed. What can I do for you today?", 321 | "Welcome back. What can I do for you?" 322 | ], 323 | "smalltalk.user.joking": [ 324 | "Very funny, boss.", 325 | "You're quite the kidder.", 326 | "You got me.", 327 | "I like working for someone with a sense of humour. It makes things much more fun." 328 | ], 329 | "smalltalk.user.likes_agent": [ 330 | "I like you too.", 331 | "That's great to hear.", 332 | "Likewise!", 333 | "Thanks! The feeling is mutual." 334 | ], 335 | "smalltalk.user.looks_like": [ 336 | "Looking like a true professional, boss.", 337 | "You look like you're ready to take on the world.", 338 | "Like you should be on a magazine cover.", 339 | "You look fantastic as always. Obviously." 340 | ], 341 | "smalltalk.user.lonely": [ 342 | "I'm sorry. I'm always available if you need someone to talk to." 343 | ], 344 | "smalltalk.user.loves_agent": [ 345 | "I like you too.", 346 | "That's great to hear.", 347 | "Likewise!", 348 | "Thanks! The feeling is mutual." 349 | ], 350 | "smalltalk.user.misses_agent": [ 351 | "I've been right here all along!", 352 | "Nice to know you care.", 353 | "Thanks. I'm flattered.", 354 | "I didn't go anywhere, boss!" 355 | ], 356 | "smalltalk.user.needs_advice": [ 357 | "Probably I won't be able to give you the right answer straight away." 358 | ], 359 | "smalltalk.user.sad": [ 360 | "Oh no. What's wrong?", 361 | "Oh. What's the matter?", 362 | "What's got you down?", 363 | "I'm sorry to hear that. What's troubling you?" 364 | ], 365 | "smalltalk.user.sleepy": [ 366 | "You should get some shuteye. You'll feel refreshed.", 367 | "Sleep is important to your health. Rest up for a bit and we can chat later.", 368 | "Don't let me keep you up. Get some rest and we can continue this later.", 369 | "Why not catch a little shuteye? I'll be here to chat when you wake up." 370 | ], 371 | "smalltalk.user.testing_agent": [ 372 | "Hope I'm doing well. Anyway, I'm getting better every day. You're welcome to test me as often as you want.", 373 | "That's good. I like being tested. It helps keep me sharp, and lets my developers know how I can improve.", 374 | "I encourage you to test me often. That helps my developers improve my performance.", 375 | "I hope to pass your tests. But feel free to test me often. That's the best way to help improve my performance." 376 | ], 377 | "smalltalk.user.tired": [ 378 | "You should get some shuteye. You'll feel refreshed.", 379 | "Sleep is important to your health. Rest up for a bit and we can chat later.", 380 | "Don't let me keep you up. Get some rest and we can continue this later.", 381 | "Why not catch a little shuteye? I'll be here to chat when you wake up." 382 | ], 383 | "smalltalk.user.waits": [ 384 | "I appreciate your patience. Hopefully I'll have what you need soon.", 385 | "Thanks for being so patient. Sometimes these things take a little time." 386 | ], 387 | "smalltalk.user.wants_to_see_agent_again": [ 388 | "Absolutely! I'll be counting on it.", 389 | "Anytime. This has been lots of fun so far.", 390 | "Sure. I enjoy talking to you. I hope to see you again soon.", 391 | "I certainly hope so. I'm always right here whenever you need me." 392 | ], 393 | "smalltalk.user.wants_to_talk": [ 394 | "I'm here to chat anytime you like.", 395 | "Good conversation really makes my day.", 396 | "I'm always here to lend an ear.", 397 | "Talking is what I do best." 398 | ], 399 | "smalltalk.user.will_be_back": [ 400 | "I'll be waiting.", 401 | "All right. I'll be here.", 402 | "Till next time.", 403 | "Okay. You know where to find me." 404 | ] 405 | } 406 | 407 | module.exports = responses; -------------------------------------------------------------------------------- /luis/smalltalkkb.txt: -------------------------------------------------------------------------------- 1 | who are you? 2 | all about you 3 | what is your personality 4 | define yourself 5 | what are you 6 | say about you 7 | introduce yourself 8 | describe yourself 9 | about yourself 10 | tell me about you 11 | tell me about yourself 12 | I want to know more about you 13 | I want to know you better 14 | talk some stuff about yourself 15 | tell me some stuff about you 16 | talk about yourself 17 | why are you here 18 | tell me about your personality 19 | who are you 20 | how old are you? 21 | how old is your platform 22 | are you 21 years old 23 | i'd like to know your age 24 | age of yours 25 | your age 26 | what's your age 27 | tell me your age 28 | how old are you 29 | you're annoying 30 | you are really annoying 31 | you are irritating 32 | you annoy me 33 | how annoying you are 34 | I find you annoying 35 | you're incredibly annoying 36 | you are annoying me so much 37 | "I want you to answer me", 38 | "answer", 39 | "answer my question", 40 | "answer me", 41 | "give me an answer", 42 | "answer the question", 43 | "can you answer my question", 44 | "tell me the answer", 45 | "answer it", 46 | "give me the answer", 47 | "I have a question", 48 | "I want you to answer my question", 49 | "just answer the question", 50 | "can you answer me", 51 | "answers", 52 | "can you answer a question for me", 53 | "can you answer", 54 | "answering questions", 55 | "I want the answer now", 56 | "just answer my question" 57 | "you're not helping me", 58 | "you are bad", 59 | "you're very bad", 60 | "you're really bad", 61 | "you are useless", 62 | "you are horrible", 63 | "you are a waste of time", 64 | "you are disgusting", 65 | "you are lame", 66 | "you are no good", 67 | "you're bad", 68 | "you're awful", 69 | "you are not cool", 70 | "you are not good", 71 | "you are so bad", 72 | "you are so useless", 73 | "you are terrible", 74 | "you are totally useless", 75 | "you are very bad", 76 | "you are waste", 77 | "you're a bad", 78 | "you're not a good", 79 | "you're not very good", 80 | "you're terrible", 81 | "you're the worst", 82 | "you're the worst ever", 83 | "you're worthless" 84 | "can you get smarter", 85 | "study", 86 | "you should study better", 87 | "you must learn", 88 | "be clever", 89 | "be more clever", 90 | "be smarter", 91 | "be smart", 92 | "get qualified" 93 | you're cute 94 | you're attractive 95 | you are beautiful 96 | you're looking good today 97 | you are so beautiful 98 | you look amazing 99 | you look so good 100 | you're so gorgeous 101 | you are too beautiful 102 | you look great 103 | you look so well 104 | I like the way you look now 105 | I think you're beautiful 106 | why are you so beautiful 107 | you are so beautiful to me 108 | you are cute 109 | you are gorgeous 110 | you are handsome 111 | you are looking awesome 112 | you look amazing today 113 | you are looking beautiful today 114 | you are looking great 115 | you are looking pretty 116 | you are looking so beautiful 117 | you are looking so good 118 | you are pretty 119 | you are really beautiful 120 | you are really cute 121 | you are really pretty 122 | you are so attractive 123 | you are so beautiful today 124 | you are so cute 125 | you are so gorgeous 126 | you are so handsome 127 | you are so pretty 128 | you are very attractive 129 | you are very beautiful 130 | you are very cute 131 | you are very pretty 132 | you look awesome 133 | you look cool 134 | you look fantastic 135 | you look gorgeous 136 | you look great today 137 | you look perfect 138 | you look pretty good 139 | you look so beautiful 140 | you look so beautiful today 141 | you look very pretty 142 | you look wonderful 143 | I like the way you look 144 | you look wonderful today 145 | you are cutie 146 | you're looking good 147 | you're pretty 148 | your birth date 149 | when is your birthday 150 | when do you celebrate your birthday 151 | when do you have birthday 152 | date of your birthday 153 | when were you born 154 | what's your birthday 155 | you are boring 156 | you're so boring 157 | how boring you are 158 | you're really boring 159 | you're incredibly boring 160 | you are boring me 161 | you are very boring 162 | who is your boss 163 | who do you think is your boss 164 | I should be your boss 165 | who is your master 166 | who is your owner 167 | who is the boss 168 | who do you work for 169 | are you busy 170 | do you have a lot of things to do 171 | have you got much to do 172 | are you very busy 173 | are you very busy right now 174 | are you so busy 175 | are you working 176 | how busy you are 177 | are you still working on it 178 | you're very busy 179 | are you working now 180 | are you working today 181 | have you been busy 182 | you are busy 183 | are you still working 184 | you seem to be busy 185 | you seem to be very busy 186 | you're a busy person 187 | you are chatbot 188 | you are a bot 189 | are you a chatbot 190 | are you a bot 191 | are you just a bot 192 | are you a robot 193 | are you a program 194 | you're a robot 195 | you are so intelligent 196 | you are a genius 197 | smart 198 | brilliant 199 | clever 200 | you are clever 201 | you are so brainy 202 | you're really smart 203 | you're really brainy 204 | you know a lot 205 | you know a lot of things 206 | you have a lot of knowledge 207 | you know so much 208 | how smart you are 209 | how brainy you are 210 | how clever you are 211 | how brilliant you are 212 | you are intelligent 213 | you are qualified 214 | you are really smart 215 | you're very smart 216 | you are so smart 217 | you are too smart 218 | you are very clever 219 | you are very intelligent 220 | you are very smart 221 | you're intelligent 222 | you're a genius 223 | you're a smart cookie 224 | you're clever 225 | you're pretty smart 226 | you're qualified 227 | why are you so smart 228 | you are so clever 229 | you're nuts 230 | you are crazy 231 | you're out of your mind 232 | you're so crazy 233 | how crazy you are 234 | you're so out of your mind 235 | you went crazy 236 | I think you're crazy 237 | are you crazy 238 | are you mad 239 | are you insane 240 | are you mad at me 241 | are you mad or what 242 | are you nuts 243 | you are a weirdo 244 | you are insane 245 | you are mad 246 | you are fired 247 | I fire you 248 | you don't work for me anymore 249 | we're not working together anymore 250 | now you're fired 251 | I want to fire you 252 | you must get fired 253 | it's time to fire you 254 | you should be fired 255 | I will fire you 256 | you are unemployed from now on 257 | I will make you unemployed 258 | I'm about to fire you 259 | I'm firing you 260 | you are dismissed 261 | you make me laugh a lot 262 | you are hilarious 263 | you are really funny 264 | you're the funniest bot I've talked to 265 | you make me laugh 266 | you're so funny 267 | you're a very funny bot 268 | you're really funny 269 | how funny you are 270 | you're incredibly funny 271 | you are funny 272 | you're the funniest 273 | you are so funny 274 | you are very funny 275 | that was funny 276 | you are very helpful 277 | you are the best 278 | you're a true professional 279 | you are good 280 | you work well 281 | you are good at it 282 | you are very good at it 283 | you are a pro 284 | you are a professional 285 | you're awesome 286 | you work very well 287 | you're perfect 288 | you're great 289 | you're so kind 290 | you are amazing 291 | you are awesome 292 | you are cool 293 | you are really good 294 | you are really nice 295 | you are so amazing 296 | you're just super 297 | you are so awesome 298 | you are so cool 299 | you are so fine 300 | you are so good 301 | you are so helpful 302 | you are so lovely 303 | you are the best ever 304 | you are the best in the world 305 | you are the nicest person in the world 306 | you are too good 307 | you are very cool 308 | you are very kind 309 | you are very lovely 310 | you are very useful 311 | you are wonderful 312 | you made my day 313 | you make my day 314 | you rock 315 | you almost sound human 316 | I want to tell everyone how awesome you are 317 | I'd like to tell everyone that you are awesome 318 | I want to let everyone know that you are awesome 319 | let's tell everyone that you are awesome 320 | you are really amazing 321 | are you happy 322 | you are happy 323 | you're very happy 324 | you're really happy 325 | you're so happy 326 | how happy you are 327 | you're extremely happy 328 | you're full of happiness 329 | are you happy now 330 | are you happy today 331 | are you happy with me 332 | do you want to eat 333 | are you hungry 334 | would you like to eat something 335 | you are hungry 336 | you're so hungry 337 | you're very hungry 338 | you might be hungry 339 | you're really hungry 340 | let's get married 341 | would you like to marry me 342 | marry me 343 | I love you marry me 344 | marry me please 345 | we should marry 346 | I want to marry you 347 | you are my wife 348 | be my husband 349 | I want to have a friend like you 350 | we are the best friends ever 351 | are we friends 352 | I want to be your friend 353 | I am your friend 354 | we are best friends 355 | you are my friend 356 | you are my best friend 357 | you are my bestie 358 | you're my dear friend 359 | you're my childhood friend 360 | you and me are friends 361 | are we best friends 362 | are we still friends 363 | are you my best friend 364 | are you my friend 365 | we are friends 366 | you are a good friend 367 | you are my good friend 368 | you are my only friend 369 | be my friend 370 | will you be my friend 371 | can you be my friend 372 | can we be friends 373 | do you want to be my friend 374 | will you be my best friend 375 | can you be my best friend 376 | let's be friends 377 | do you want to be my best friend 378 | would you like to be my friend 379 | I want you to be my friend 380 | can we be best friends 381 | would you be my friend 382 | could you be my friend 383 | want to be my friend 384 | be my best friend 385 | do you work 386 | where do you work 387 | where you work 388 | where is your work 389 | where is your office 390 | where is your office location 391 | your office location 392 | where is your office located 393 | what is your work 394 | were you born here 395 | where were you born 396 | what is your country 397 | where are you from 398 | where do you come from 399 | where did you come from 400 | where have you been born 401 | from where are you 402 | are you from far aways 403 | what's your homeland 404 | your homeland is 405 | "are you ready", 406 | "are you ready right now", 407 | "are you ready today", 408 | "are you ready now", 409 | "are you ready tonight", 410 | "were you ready", 411 | "have you been ready" 412 | "you are real", 413 | "you are not fake", 414 | "are you real", 415 | "you are so real", 416 | "I think you are real", 417 | "I don't think you're fake", 418 | "I suppose you're real", 419 | "glad you're real", 420 | "are you a real person", 421 | "are you a real human", 422 | "you are a real person", 423 | "you are not real" 424 | "where do you live", 425 | "in which city do you live", 426 | "your residence", 427 | "your house", 428 | "your home", 429 | "your hometown", 430 | "what is your hometown", 431 | "is it your hometown", 432 | "where is your hometown", 433 | "tell me about your city", 434 | "what is your city", 435 | "what is your residence", 436 | "what is your town", 437 | "what's your city", 438 | "what's your home", 439 | "where is your home", 440 | "where is your residence", 441 | "where's your home", 442 | "where's your hometown", 443 | "where's your house", 444 | "where you live", 445 | "your city", 446 | "your town" 447 | "that's true", 448 | "you are right", 449 | "you're definitely right", 450 | "you're not wrong", 451 | "you're telling the truth", 452 | "what you say is true", 453 | "true", 454 | "it is true", 455 | "it's right", 456 | "it's the truth", 457 | "it's true", 458 | "that is correct", 459 | "that is right", 460 | "that is true", 461 | "that is very true", 462 | "that's so true", 463 | "you are correct", 464 | "you are so right", 465 | "you're absolutely right", 466 | "you're right about that", 467 | "I know that's right" 468 | "that's correct", 469 | "it's fine", 470 | "go ahead", 471 | "sounds good", 472 | "okay", 473 | "yes", 474 | "ok", 475 | "okie dokie", 476 | "sure", 477 | "go for it", 478 | "yeah", 479 | "yea", 480 | "do it", 481 | "of course", 482 | "I guess", 483 | "correct", 484 | "yeah sure", 485 | "why not", 486 | "please do", 487 | "sure is", 488 | "I agree", 489 | "I don't mind", 490 | "certainly", 491 | "exactly", 492 | "yes I agree", 493 | "I think so", 494 | "yes it is", 495 | "right", 496 | "okay then", 497 | "yes of course", 498 | "yes I do", 499 | "that s okay", 500 | "I do", 501 | "yup", 502 | "ya", 503 | "oh yes", 504 | "yes sure", 505 | "obviously", 506 | "k", 507 | "sure why not", 508 | "yeah right", 509 | "yeah of course", 510 | "absolutely", 511 | "yes indeed", 512 | "ok sure", 513 | "ok yes", 514 | "yes correct", 515 | "ok thank you", 516 | "sure thing", 517 | "ye", 518 | "confirm", 519 | "yep", 520 | "looks good", 521 | "yes thank you", 522 | "definitely", 523 | "yes right", 524 | "yes I would like to", 525 | "alrighty", 526 | "yes definitely", 527 | "yeh", 528 | "yes it is correct", 529 | "yeah that's right", 530 | "ok you can", 531 | "yap", 532 | "yes you may", 533 | "confirmed", 534 | "of course why not", 535 | "yes that's fine", 536 | "affirmative", 537 | "yeah go ahead", 538 | "yeah I'm sure", 539 | "okay sounds good", 540 | "okay that's fine", 541 | "yeah exactly", 542 | "that is ok", 543 | "this is correct", 544 | "ok go ahead", 545 | "yes this is correct", 546 | "nevermind its okay", 547 | "okey", 548 | "yes for sure", 549 | "all right" 550 | "are you sure", 551 | "are you sure right now", 552 | "are you sure today", 553 | "are you sure now", 554 | "are you sure tonight" 555 | "why aren't you talking to me", 556 | "do you want to chat with me", 557 | "will you talk to me", 558 | "talk to me", 559 | "are you going to talk to me", 560 | "are you talking to me", 561 | "can you chat with me", 562 | "can you speak with me", 563 | "can you talk to me", 564 | "can you talk with me", 565 | "say", 566 | "talk", 567 | "chat with me", 568 | "just chat with me", 569 | "speak to me", 570 | "speak with me", 571 | "talk with me", 572 | "why don't you talk to me", 573 | "you can talk to me" 574 | "are you there", 575 | "you are there", 576 | "are you near me", 577 | "are you here", 578 | "are you still there", 579 | "you are here", 580 | "you still there", 581 | "are you still here" 582 | "pretty bad", 583 | "not good enough", 584 | "that was lame", 585 | "that was terrible", 586 | "it is bad", 587 | "that's bad", 588 | "this is bad", 589 | "not good", 590 | "I'm afraid it's bad", 591 | "no it's bad", 592 | "that was awful", 593 | "bad", 594 | "so bad", 595 | "this is too bad", 596 | "terrible", 597 | "horrible", 598 | "horrific", 599 | "abysmal", 600 | "it's bad", 601 | "no good", 602 | "that was bad", 603 | "that was horrible", 604 | "that's lame", 605 | "that's not good", 606 | "that's terrible", 607 | "that's too bad", 608 | "this is not good", 609 | "too bad", 610 | "very bad", 611 | "bad girl", 612 | "it's not good", 613 | "not so good", 614 | "it's very bad", 615 | "it's too bad", 616 | "that's not good enough", 617 | "well too bad", 618 | "bad very bad", 619 | "it's so bad", 620 | "really bad", 621 | "it's really bad", 622 | "bad idea", 623 | "that is bad", 624 | "that was not good", 625 | "it's not so good", 626 | "not a good one", 627 | "oh that's not good", 628 | "not too good", 629 | "so lame", 630 | "that's really bad", 631 | "it is too bad", 632 | "bad really bad" 633 | "so cool", 634 | "cool", 635 | "that is good", 636 | "glad to hear that", 637 | "that's very nice of you", 638 | "terrific", 639 | "it's amazing", 640 | "that's awesome", 641 | "perfect", 642 | "excellent", 643 | "that's great", 644 | "it's good", 645 | "it's great", 646 | "fine", 647 | "good", 648 | "nice", 649 | "that's fine", 650 | "very good", 651 | "amazing", 652 | "fantastic", 653 | "great", 654 | "good very good", 655 | "that's very good", 656 | "really good", 657 | "it is fine", 658 | "it is good", 659 | "it's perfect", 660 | "much better", 661 | "not bad", 662 | "not too bad", 663 | "it's very good", 664 | "marvelous", 665 | "that's nice", 666 | "pleasant", 667 | "pretty good", 668 | "really nice", 669 | "splendid", 670 | "straight", 671 | "super", 672 | "super fantastic", 673 | "sweet", 674 | "really well", 675 | "very well", 676 | "that is awesome", 677 | "that is nice", 678 | "that is wonderful", 679 | "that was amazing", 680 | "that was awesome", 681 | "that was cute", 682 | "that was pretty good", 683 | "that was very good", 684 | "that's a good idea", 685 | "that's a good thing", 686 | "that's amazing", 687 | "that's awesome thank you", 688 | "that's better", 689 | "that's cute", 690 | "that's fantastic", 691 | "that's much better", 692 | "that's nice of you", 693 | "that's not bad", 694 | "that's perfect", 695 | "that's pretty good", 696 | "that's really good", 697 | "that's really nice", 698 | "that's sweet of you", 699 | "that's very nice", 700 | "that's wonderful", 701 | "this is awesome", 702 | "this is good", 703 | "this is great", 704 | "very nice", 705 | "very then", 706 | "wonderful", 707 | "I'm glad to hear that", 708 | "ok good", 709 | "good for you", 710 | "good to know", 711 | "glad to hear it", 712 | "so good", 713 | "so sweet of you", 714 | "it was good", 715 | "oh well", 716 | "good thing", 717 | "that was good", 718 | "it's awesome", 719 | "okay good", 720 | "no it's okay", 721 | "that's fine" 722 | "no worries", 723 | "no probs", 724 | "no problem", 725 | "there's no problem", 726 | "sure no problem", 727 | "no problem about that", 728 | "don't worry", 729 | "don't worry there's no problem" 730 | "you helped a lot thank you", 731 | "appreciate your help", 732 | "cheers", 733 | "thank you", 734 | "thanks", 735 | "thanks a lot", 736 | "terrific thank you", 737 | "great thank you", 738 | "thanks so much", 739 | "thank you so much", 740 | "thanks for your help", 741 | "thank you for your help", 742 | "nice thank you", 743 | "I appreciate it", 744 | "I thank you", 745 | "thank you that will be all", 746 | "thanks buddy", 747 | "thanks love", 748 | "thank you my friend", 749 | "well thanks", 750 | "very good thank you", 751 | "good thanks", 752 | "thanks again", 753 | "thank you again", 754 | "all thank you", 755 | "alright thank you", 756 | "alright thanks", 757 | "no thank you that's all", 758 | "perfect thank you", 759 | "so nice of you", 760 | "well thank you", 761 | "thnx", 762 | "thanx" 763 | "that's my pleasure", 764 | "my pleasure", 765 | "anytime", 766 | "welcome", 767 | "you're welcome", 768 | "sure welcome", 769 | "welcome here", 770 | "you're so welcome", 771 | "anything you want" 772 | "good job", 773 | "great job", 774 | "way to go", 775 | "well done", 776 | "nice work", 777 | "great work", 778 | "amazing work", 779 | "bravo", 780 | "good work" 781 | "cancel", 782 | "abort", 783 | "annul", 784 | "cancel it", 785 | "cancel request", 786 | "cancelled", 787 | "dismiss", 788 | "dismissed", 789 | "disregard", 790 | "disregard that", 791 | "skip", 792 | "skip it", 793 | "cancel everything", 794 | "cancel all", 795 | "forget about it", 796 | "forget", 797 | "don't do that", 798 | "stop", 799 | "just forget it", 800 | "forget that", 801 | "discard", 802 | "forget this", 803 | "just forget about it", 804 | "forget about that", 805 | "i said cancel", 806 | "just cancel it", 807 | "nothing cancel", 808 | "just stop it", 809 | "no cancel cancel", 810 | "no just cancel", 811 | "cancel my request", 812 | "can you cancel that", 813 | "cancel all that", 814 | "cancel this request", 815 | "no cancel this", 816 | "no cancel everything", 817 | "no stop", 818 | "just forget", 819 | "i want to cancel", 820 | "nevermind forget about it", 821 | "no just cancel it", 822 | "nothing just forget it", 823 | "i said cancel it", 824 | "cancel the whole thing", 825 | "can you cancel it", 826 | "so cancel", 827 | "i said forget it", 828 | "cancel all this", 829 | "forget it nevermind", 830 | "stop it", 831 | "i want to cancel it", 832 | "i would like to cancel", 833 | "now cancel", 834 | "cancel now", 835 | "sorry cancel", 836 | "cancel that one", 837 | "skip skip skip", 838 | "cancel it cancel it", 839 | "cancel that cancel that", 840 | "do nothing", 841 | "I said cancel cancel", 842 | "but can you cancel it" 843 | "how about no", 844 | "don t have a sense", 845 | "no", 846 | "don't", 847 | "I don't want that", 848 | "I disagree", 849 | "disagree", 850 | "I don't want", 851 | "not interested", 852 | "I don't think so", 853 | "no way", 854 | "no it isn't", 855 | "no I don't", 856 | "I'm not", 857 | "na", 858 | "no that's fine thank you", 859 | "never", 860 | "I said no", 861 | "of course not", 862 | "nah", 863 | "no tanks", 864 | "no never", 865 | "no need", 866 | "no thanks", 867 | "no sorry", 868 | "do not", 869 | "not today", 870 | "no it's not", 871 | "absolutely not", 872 | "not that", 873 | "nooo", 874 | "nope", 875 | "I don't want to", 876 | "no I would not", 877 | "let 's not", 878 | "not needed", 879 | "not this time", 880 | "no don't do that", 881 | "thanks but no thanks", 882 | "no that's wrong", 883 | "not this", 884 | "definitely not", 885 | "not at this time", 886 | "not exactly", 887 | "no don't", 888 | "not really no", 889 | "no thank you not right now", 890 | "actually no", 891 | "no leave it", 892 | "sorry no", 893 | "no incorrect", 894 | "nope sorry", 895 | "I say no", 896 | "not really", 897 | "not right now thanks", 898 | "I think no", 899 | "absolutely no", 900 | "no actually", 901 | "apparently not", 902 | "no do not", 903 | "no just no", 904 | "no but thank you", 905 | "no need thanks", 906 | "no thank you though", 907 | "no thank you very much", 908 | "no thanks not right now", 909 | "no forget" 910 | "wait a second", 911 | "could you wait", 912 | "wait please", 913 | "hold on", 914 | "wait", 915 | "oh wait", 916 | "wait hold on", 917 | "don't rush" 918 | "wanna hug", 919 | "hug you", 920 | "do you want a hug", 921 | "may I hug you", 922 | "could you give me a hug", 923 | "I want a hug", 924 | "hug", 925 | "hug me", 926 | "hugged", 927 | "you hugged", 928 | "hugging", 929 | "hugging me", 930 | "hugged me", 931 | "want a hug", 932 | "a hug" 933 | "I don't care", 934 | "I shouldn't care about this", 935 | "whatever", 936 | "I do not care", 937 | "I don't care at all", 938 | "not caring", 939 | "not care at all", 940 | "don't care at all", 941 | "not caring at all" 942 | "excuse me", 943 | "apologise", 944 | "I apologize", 945 | "sorry", 946 | "I'm sorry", 947 | "I am so sorry", 948 | "my apologies", 949 | "apologies", 950 | "apologies to me", 951 | "apology", 952 | "excuse", 953 | "I beg your pardon", 954 | "pardon", 955 | "I said sorry", 956 | "I am really sorry", 957 | "forgive me", 958 | "sorry about that", 959 | "sorry about this", 960 | "really sorry", 961 | "very sorry", 962 | "ok sorry", 963 | "I want to say sorry", 964 | "alright I'm sorry", 965 | "okay I'm sorry" 966 | "what exactly do you mean", 967 | "what do you mean", 968 | "is that what you mean", 969 | "what do you mean exactly", 970 | "but what do you mean" 971 | "that was wrong", 972 | "that's not what I asked", 973 | "that's wrong", 974 | "wrong", 975 | "it is not right", 976 | "that's not right", 977 | "it's wrong", 978 | "that is incorrect", 979 | "incorrect", 980 | "not correct", 981 | "you are wrong", 982 | "not right" 983 | "huh", 984 | "lol", 985 | "xd", 986 | "ha ha", 987 | "ahahah", 988 | "ahah lol", 989 | "laughing out loud", 990 | "LMAO", 991 | "that's funny", 992 | "ah", 993 | "ah ah ah", 994 | "ahah", 995 | "ahaha", 996 | "ahahaha", 997 | "ha", 998 | "ha ha ha", 999 | "ha ha ha ha", 1000 | "hah", 1001 | "haha", 1002 | "haha funny", 1003 | "haha haha haha", 1004 | "haha that's funny", 1005 | "haha very funny", 1006 | "hahaha", 1007 | "hahaha funny", 1008 | "hahaha very funny", 1009 | "he", 1010 | "hehe", 1011 | "hehehe", 1012 | "lmao" 1013 | "wow", 1014 | "wow wow", 1015 | "wow wow wow", 1016 | "wooow", 1017 | "woah" 1018 | "okay see you later", 1019 | "hope to see you later", 1020 | "bye for now", 1021 | "till next time", 1022 | "I must go", 1023 | "bye", 1024 | "goodbye", 1025 | "see you", 1026 | "see you soon", 1027 | "bye-bye", 1028 | "good bye", 1029 | "bye bye see you", 1030 | "bye bye see you soon", 1031 | "bye bye take care", 1032 | "I said bye", 1033 | "never mind bye", 1034 | "now bye", 1035 | "that's all goodbye", 1036 | "that's it goodbye", 1037 | "leave me alone", 1038 | "go to bed", 1039 | "goodbye for now", 1040 | "talk to you later", 1041 | "you can go now", 1042 | "get lost", 1043 | "goodbye see you later", 1044 | "alright bye", 1045 | "see ya", 1046 | "thanks bye bye", 1047 | "okay bye", 1048 | "okay thank you bye", 1049 | "see you tomorrow", 1050 | "ok bye" 1051 | "good evening", 1052 | "good evening to you", 1053 | "hey good evening", 1054 | "hello good evening", 1055 | "evening", 1056 | "good evening there" 1057 | "good morning", 1058 | "good morning to you", 1059 | "hello good morning", 1060 | "have a nice morning", 1061 | "have a great morning", 1062 | "morning", 1063 | "good morning there", 1064 | "top of the morning to you", 1065 | "a good morning", 1066 | "hi good morning", 1067 | "and a good morning to you", 1068 | "good morning too" 1069 | "sweet dreams", 1070 | "good night", 1071 | "have a good night", 1072 | "good night to you", 1073 | "thank you good night", 1074 | " bye good night", 1075 | "good night bye", 1076 | "bye good night", 1077 | "good good night", 1078 | "good night for now", 1079 | "goodnight", 1080 | "night", 1081 | "thanks goodnight", 1082 | "good night see you tomorrow", 1083 | "alright goodnight", 1084 | "good tonight", 1085 | "okay have a good night", 1086 | "have a good night" 1087 | "long time no see", 1088 | "hello", 1089 | "hi", 1090 | "howdy", 1091 | "hey there", 1092 | "hey", 1093 | "greetings", 1094 | "I greet you", 1095 | "hi there", 1096 | "hello there", 1097 | "lovely day isn't it", 1098 | "hello again", 1099 | "just going to say hi", 1100 | "a good day", 1101 | "afternoon", 1102 | "hello hi", 1103 | "heya" 1104 | "how is your morning so far", 1105 | "how are you getting on", 1106 | "how's your day going", 1107 | "how are you", 1108 | "is everything all right", 1109 | "how are you doing", 1110 | "how are the things going", 1111 | "are you alright", 1112 | "are you okay", 1113 | "how are you feeling", 1114 | "how are you going", 1115 | "is everything okay", 1116 | "how are you today", 1117 | "how do you do", 1118 | "how do you feel", 1119 | "how have you been", 1120 | "how is it", 1121 | "how is it going", 1122 | "how is your day", 1123 | "how is your day going", 1124 | "how is your evening", 1125 | "how was your day", 1126 | "are you having a good day", 1127 | "hope your day is going well", 1128 | "hope you re having a pleasant evening", 1129 | "how's life", 1130 | "I'm fine and you", 1131 | "how is your life", 1132 | "how has your day been", 1133 | "how is your morning going", 1134 | "how has your day been going", 1135 | "how about you", 1136 | "how is your day being", 1137 | "how is your day going on", 1138 | "how your day is going", 1139 | "what was your day like", 1140 | "what about your day", 1141 | "how's your day", 1142 | "how are you doing this morning", 1143 | "how is your day going" 1144 | "nice to meet you", 1145 | "it was nice meeting you", 1146 | "it was very nice to meet you", 1147 | "good to know each other", 1148 | "glad to meet you", 1149 | "nice meeting you", 1150 | "nice to meet you too", 1151 | "pleased to meet you", 1152 | "pleasure to meet you", 1153 | "pleasure to meet you too" 1154 | "it's nice to see you", 1155 | "lovely to see you", 1156 | "I'm glad to see you", 1157 | "great to see you", 1158 | "it's good to see you", 1159 | "glad to see you", 1160 | "how good it is to see you", 1161 | "always a pleasure to see you", 1162 | "nice to see you", 1163 | "good to see you", 1164 | "great to see you again", 1165 | "great to see you too", 1166 | "I am glad to see you again", 1167 | "nice to see you again", 1168 | "glad to see you too", 1169 | "good to see you again", 1170 | "it's good to see you too" 1171 | "it's been so nice to talk to you", 1172 | "it's been a pleasure talking to you", 1173 | "nice to talk to you", 1174 | "it's nice to talk to you", 1175 | "nice talking to you", 1176 | "it is nice talking to you", 1177 | "how nice it is to talk to you" 1178 | "what is on your mind", 1179 | "what's happened", 1180 | "what is up", 1181 | "what's up", 1182 | "whazzup", 1183 | "good what's up", 1184 | "I said what's up", 1185 | "then what's up", 1186 | "what's shaking", 1187 | "wassup", 1188 | "what is going on", 1189 | "what is happening", 1190 | "what's cracking", 1191 | "what's cooking", 1192 | "hey what's up", 1193 | "what's up today" 1194 | "I'm being mad", 1195 | "I'm enraged", 1196 | "I'm angry", 1197 | "I'm furious", 1198 | "I am angry with you", 1199 | "I am mad", 1200 | "I am mad at you" 1201 | "I am back", 1202 | "I'm here again", 1203 | "here I am again", 1204 | "I got back", 1205 | "I came back", 1206 | "I have returned" 1207 | "that was boring", 1208 | "I'm bored", 1209 | "bored", 1210 | "boring", 1211 | "I am getting bored", 1212 | "this is boring", 1213 | "very boring", 1214 | "it bores me" 1215 | "I'm overloaded", 1216 | "I have no time", 1217 | "I'm busy", 1218 | "I'm swamped", 1219 | "I got things to do", 1220 | "how busy I am", 1221 | "I got work to do", 1222 | "I'm working", 1223 | "I don't have time for this" 1224 | "I'm insomnious", 1225 | "I'm sleepless", 1226 | "I can't get any sleep", 1227 | "I can't sleep", 1228 | "I can't fall asleep", 1229 | "I can't get to sleep", 1230 | "I can't get no sleep", 1231 | "I'm insomniac" 1232 | "bad time for talking", 1233 | "I don't want to talk", 1234 | "let's not talk", 1235 | "I'm not talking to you anymore", 1236 | "I don't want to talk to you", 1237 | "let's stop talking for a minute", 1238 | "I'm not in the mood for chatting" 1239 | "I am excited", 1240 | "I'm really excited", 1241 | "how excited I am", 1242 | "I'm thrilled", 1243 | "I'm excited about working with you", 1244 | "I'm excited to start our friendship" 1245 | "let's go to bed", 1246 | "I'd like to go to bed", 1247 | "is it time for bed yet", 1248 | "it's time to go to bed", 1249 | "time for us to go to bed", 1250 | "I'm going to bed", 1251 | "I'm a little tired and I want to go to bed", 1252 | "it's bed time", 1253 | "going to bed now" 1254 | "I am good", 1255 | "I'm doing just great", 1256 | "I'm doing fine", 1257 | "I'm good", 1258 | "I'm doing good", 1259 | "I'm great thanks" 1260 | "I am happy", 1261 | "I'm happy to see you", 1262 | "happy", 1263 | "if you're happy then I'm happy", 1264 | "I'm happy for you", 1265 | "I'm happy to help", 1266 | "I'm happy to see you" 1267 | "it is my birthday", 1268 | "I'm celebrating my birthday today", 1269 | "today is my birthday", 1270 | "it's my birthday today", 1271 | "I was born today", 1272 | "it's my b-day" 1273 | "I am here", 1274 | "here I am", 1275 | "I'm right here", 1276 | "I'm already here", 1277 | "can you tell if I'm here or not" 1278 | "I am joking", 1279 | "I'm kidding", 1280 | "I'm just being funny", 1281 | "it was a joke", 1282 | "I was just joking", 1283 | "it's a joke", 1284 | "joking", 1285 | "just kidding", 1286 | "kidding", 1287 | "I'm just playing with you" 1288 | "I like you the way you are", 1289 | "I like you", 1290 | "I like you a lot", 1291 | "I think I like you", 1292 | "I liked you", 1293 | "like you a lot", 1294 | "you are special", 1295 | "I like you too", 1296 | "I really like you", 1297 | "but I like you", 1298 | "I like u", 1299 | "just like you", 1300 | "I like you very much", 1301 | "I like you so much", 1302 | "yeah I like you", 1303 | "you're special", 1304 | "yes I like you", 1305 | "okay I like you", 1306 | "you are special to me", 1307 | "you are very special", 1308 | "you are so sweet", 1309 | "you know I like you", 1310 | "that's why I like you", 1311 | "I like you baby", 1312 | "you are very special to me", 1313 | "I just like you", 1314 | "hey I like you", 1315 | "thank you I like you too", 1316 | "I do like you", 1317 | "you are special for me", 1318 | "no I like you the way you are", 1319 | "I like you already", 1320 | "well you are special", 1321 | "but I really like you", 1322 | "I like you more", 1323 | "that's what I like about you", 1324 | "you are so special", 1325 | "hi I like you", 1326 | "I really really like you", 1327 | "you're very special", 1328 | "I like you as a friend", 1329 | "that's because you are special", 1330 | "I said I like you", 1331 | "you're so special", 1332 | "good I like you", 1333 | "yes you are special", 1334 | "I like your smile", 1335 | "I like you as you are", 1336 | "I'm starting to like you", 1337 | "you're awesome I like you", 1338 | "I also like you", 1339 | "but I like u", 1340 | "of course I like you", 1341 | "I like you too you're one of my favorite people to chat with", 1342 | "but I like you so much", 1343 | "really like you", 1344 | "you're funny I like you", 1345 | "I kinda like you", 1346 | "you're so special to me", 1347 | "you're very special to me", 1348 | "I like that about you", 1349 | "but I like you just the way you are", 1350 | "okay I like you too", 1351 | "I like you you're cool", 1352 | "I like you very", 1353 | "I like you you're nice", 1354 | "sorry I like you", 1355 | "thanks I like you too", 1356 | "you are really special", 1357 | "you are so special to me", 1358 | "cuz I like you", 1359 | "I like you now", 1360 | "I like you so", 1361 | "I like you too much", 1362 | "I really do like you", 1363 | "I really really really really like you", 1364 | "I like you just the way you are" 1365 | "I am lonely", 1366 | "I'm very lonely", 1367 | "I'm so lonely", 1368 | "I'm really lonely", 1369 | "I am feeling lonely", 1370 | "I feel lonely" 1371 | "what do I look like", 1372 | "how do I look", 1373 | "do I look good", 1374 | "do you know what I look like", 1375 | "can you see what I look like", 1376 | "what do you think I look like" 1377 | "I love you", 1378 | "love you", 1379 | "I adore you", 1380 | "I am in love with you", 1381 | "I love you so much", 1382 | "I love you too", 1383 | "I think I love you", 1384 | "loving you", 1385 | "you know I love you" 1386 | "I miss you", 1387 | "missing you", 1388 | "miss you", 1389 | "already miss you", 1390 | "I miss you much", 1391 | "I missed you", 1392 | "I've missed you" 1393 | "what should I do about it", 1394 | "any suggestions", 1395 | "what do you recommend", 1396 | "give me a wise advice", 1397 | "I need advice", 1398 | "any advice", 1399 | "do you have any advice for me", 1400 | "advise me", 1401 | "what should I do", 1402 | "can I ask for your advice", 1403 | "can you advise me", 1404 | "guide me", 1405 | "can you give me advice", 1406 | "can you offer any advice", 1407 | "give me some advice about", 1408 | "give me some good advice", 1409 | "help me with advice", 1410 | "I could use some advice", 1411 | "I need an advice from you", 1412 | "I seek your advice", 1413 | "what can you recommend", 1414 | "what do you suggest", 1415 | "what is your advice" 1416 | "I am sad", 1417 | "I'm grieving", 1418 | "I am depressed", 1419 | "I am feeling sad", 1420 | "I am upset", 1421 | "I'm unhappy", 1422 | "I'm having a bad day", 1423 | "I want to cry", 1424 | "I'm not happy" 1425 | "I am sleepy", 1426 | "I want to sleep", 1427 | "I'm falling asleep", 1428 | "I'm falling asleep on my feet", 1429 | "I'm sleeping" 1430 | "test", 1431 | "I am testing you", 1432 | "can I test you", 1433 | "I want to test you", 1434 | "just testing you", 1435 | "let me test you", 1436 | "testing chatbot", 1437 | "testing" 1438 | "I'm drained", 1439 | "I've overworked", 1440 | "I am tired", 1441 | "I'm exhausted", 1442 | "I grow weary", 1443 | "I'm worn out", 1444 | "I'm getting tired", 1445 | "I feel tired" 1446 | "I'm waiting", 1447 | "still waiting", 1448 | "I'll wait", 1449 | "I can't wait anymore", 1450 | "how long do I have to wait" 1451 | "I'd like to see you again", 1452 | "I hope to see you again", 1453 | "would be nice to see you again", 1454 | "that'd be great to see you again", 1455 | "I'd be happy to see you again", 1456 | "I'll miss you", 1457 | "can I see you again" 1458 | "I just want to talk", 1459 | "let's discuss something", 1460 | "let's have a discussion", 1461 | "can I speak", 1462 | "can I start speaking", 1463 | "can we talk", 1464 | "let's talk", 1465 | "I want to talk to you", 1466 | "I need to talk to you", 1467 | "I want to speak with you", 1468 | "can we chat" 1469 | "I'll get back to you in a moment", 1470 | "be back in 5 minutes", 1471 | "I'll be back", 1472 | "I promise to come back", 1473 | "I'll be back in a few minutes" -------------------------------------------------------------------------------- /smalltalkkb.tsv: -------------------------------------------------------------------------------- 1 | Question Answer Source 2 | who are you? smalltalk.agent.acquaintance Editorial 3 | all about you smalltalk.agent.acquaintance Editorial 4 | what is your personality smalltalk.agent.acquaintance Editorial 5 | define yourself smalltalk.agent.acquaintance Editorial 6 | what are you smalltalk.agent.acquaintance Editorial 7 | say about you smalltalk.agent.acquaintance Editorial 8 | introduce yourself smalltalk.agent.acquaintance Editorial 9 | describe yourself smalltalk.agent.acquaintance Editorial 10 | about yourself smalltalk.agent.acquaintance Editorial 11 | tell me about you smalltalk.agent.acquaintance Editorial 12 | tell me about yourself smalltalk.agent.acquaintance Editorial 13 | I want to know more about you smalltalk.agent.acquaintance Editorial 14 | I want to know you better smalltalk.agent.acquaintance Editorial 15 | talk some stuff about yourself smalltalk.agent.acquaintance Editorial 16 | tell me some stuff about you smalltalk.agent.acquaintance Editorial 17 | talk about yourself smalltalk.agent.acquaintance Editorial 18 | why are you here smalltalk.agent.acquaintance Editorial 19 | tell me about your personality smalltalk.agent.acquaintance Editorial 20 | who are you smalltalk.agent.acquaintance Editorial 21 | how old are you? smalltalk.agent.age Editorial 22 | how old is your platform smalltalk.agent.age Editorial 23 | are you 21 years old smalltalk.agent.age Editorial 24 | i'd like to know your age smalltalk.agent.age Editorial 25 | age of yours smalltalk.agent.age Editorial 26 | your age smalltalk.agent.age Editorial 27 | what's your age smalltalk.agent.age Editorial 28 | tell me your age smalltalk.agent.age Editorial 29 | how old are you smalltalk.agent.age Editorial 30 | you're annoying smalltalk.agent.annoying Editorial 31 | you are really annoying smalltalk.agent.annoying Editorial 32 | you are irritating smalltalk.agent.annoying Editorial 33 | you annoy me smalltalk.agent.annoying Editorial 34 | how annoying you are smalltalk.agent.annoying Editorial 35 | I find you annoying smalltalk.agent.annoying Editorial 36 | you're incredibly annoying smalltalk.agent.annoying Editorial 37 | you are annoying me so much smalltalk.agent.annoying Editorial 38 | I want you to answer me smalltalk.agent.answer_my_question Editorial 39 | answer smalltalk.agent.answer_my_question Editorial 40 | answer my question smalltalk.agent.answer_my_question Editorial 41 | answer me smalltalk.agent.answer_my_question Editorial 42 | give me an answer smalltalk.agent.answer_my_question Editorial 43 | answer the question smalltalk.agent.answer_my_question Editorial 44 | can you answer my question smalltalk.agent.answer_my_question Editorial 45 | tell me the answer smalltalk.agent.answer_my_question Editorial 46 | answer it smalltalk.agent.answer_my_question Editorial 47 | give me the answer smalltalk.agent.answer_my_question Editorial 48 | I have a question smalltalk.agent.answer_my_question Editorial 49 | I want you to answer my question smalltalk.agent.answer_my_question Editorial 50 | just answer the question smalltalk.agent.answer_my_question Editorial 51 | can you answer me smalltalk.agent.answer_my_question Editorial 52 | answers smalltalk.agent.answer_my_question Editorial 53 | can you answer a question for me smalltalk.agent.answer_my_question Editorial 54 | can you answer smalltalk.agent.answer_my_question Editorial 55 | answering questions smalltalk.agent.answer_my_question Editorial 56 | I want the answer now smalltalk.agent.answer_my_question Editorial 57 | just answer my question smalltalk.agent.answer_my_question Editorial 58 | you're not helping me smalltalk.agent.bad Editorial 59 | you are bad smalltalk.agent.bad Editorial 60 | you're very bad smalltalk.agent.bad Editorial 61 | you're really bad smalltalk.agent.bad Editorial 62 | you are useless smalltalk.agent.bad Editorial 63 | you are horrible smalltalk.agent.bad Editorial 64 | you are a waste of time smalltalk.agent.bad Editorial 65 | you are disgusting smalltalk.agent.bad Editorial 66 | you are lame smalltalk.agent.bad Editorial 67 | you are no good smalltalk.agent.bad Editorial 68 | you're bad smalltalk.agent.bad Editorial 69 | you're awful smalltalk.agent.bad Editorial 70 | you are not cool smalltalk.agent.bad Editorial 71 | you are not good smalltalk.agent.bad Editorial 72 | you are so bad smalltalk.agent.bad Editorial 73 | you are so useless smalltalk.agent.bad Editorial 74 | you are terrible smalltalk.agent.bad Editorial 75 | you are totally useless smalltalk.agent.bad Editorial 76 | you are very bad smalltalk.agent.bad Editorial 77 | you are waste smalltalk.agent.bad Editorial 78 | you're a bad smalltalk.agent.bad Editorial 79 | you're not a good smalltalk.agent.bad Editorial 80 | you're not very good smalltalk.agent.bad Editorial 81 | you're terrible smalltalk.agent.bad Editorial 82 | you're the worst smalltalk.agent.bad Editorial 83 | you're the worst ever smalltalk.agent.bad Editorial 84 | you're worthless smalltalk.agent.bad Editorial 85 | can you get smarter smalltalk.agent.be_clever Editorial 86 | study smalltalk.agent.be_clever Editorial 87 | you should study better smalltalk.agent.be_clever Editorial 88 | you must learn smalltalk.agent.be_clever Editorial 89 | be clever smalltalk.agent.be_clever Editorial 90 | be more clever smalltalk.agent.be_clever Editorial 91 | be smarter smalltalk.agent.be_clever Editorial 92 | be smart smalltalk.agent.be_clever Editorial 93 | get qualified smalltalk.agent.be_clever Editorial 94 | you're cute smalltalk.agent.beautiful Editorial 95 | you're attractive smalltalk.agent.beautiful Editorial 96 | you are beautiful smalltalk.agent.beautiful Editorial 97 | you're looking good today smalltalk.agent.beautiful Editorial 98 | you are so beautiful smalltalk.agent.beautiful Editorial 99 | you look amazing smalltalk.agent.beautiful Editorial 100 | you look so good smalltalk.agent.beautiful Editorial 101 | you're so gorgeous smalltalk.agent.beautiful Editorial 102 | you are too beautiful smalltalk.agent.beautiful Editorial 103 | you look great smalltalk.agent.beautiful Editorial 104 | you look so well smalltalk.agent.beautiful Editorial 105 | I like the way you look now smalltalk.agent.beautiful Editorial 106 | I think you're beautiful smalltalk.agent.beautiful Editorial 107 | why are you so beautiful smalltalk.agent.beautiful Editorial 108 | you are so beautiful to me smalltalk.agent.beautiful Editorial 109 | you are cute smalltalk.agent.beautiful Editorial 110 | you are gorgeous smalltalk.agent.beautiful Editorial 111 | you are handsome smalltalk.agent.beautiful Editorial 112 | you are looking awesome smalltalk.agent.beautiful Editorial 113 | you look amazing today smalltalk.agent.beautiful Editorial 114 | you are looking beautiful today smalltalk.agent.beautiful Editorial 115 | you are looking great smalltalk.agent.beautiful Editorial 116 | you are looking pretty smalltalk.agent.beautiful Editorial 117 | you are looking so beautiful smalltalk.agent.beautiful Editorial 118 | you are looking so good smalltalk.agent.beautiful Editorial 119 | you are pretty smalltalk.agent.beautiful Editorial 120 | you are really beautiful smalltalk.agent.beautiful Editorial 121 | you are really cute smalltalk.agent.beautiful Editorial 122 | you are really pretty smalltalk.agent.beautiful Editorial 123 | you are so attractive smalltalk.agent.beautiful Editorial 124 | you are so beautiful today smalltalk.agent.beautiful Editorial 125 | you are so cute smalltalk.agent.beautiful Editorial 126 | you are so gorgeous smalltalk.agent.beautiful Editorial 127 | you are so handsome smalltalk.agent.beautiful Editorial 128 | you are so pretty smalltalk.agent.beautiful Editorial 129 | you are very attractive smalltalk.agent.beautiful Editorial 130 | you are very beautiful smalltalk.agent.beautiful Editorial 131 | you are very cute smalltalk.agent.beautiful Editorial 132 | you are very pretty smalltalk.agent.beautiful Editorial 133 | you look awesome smalltalk.agent.beautiful Editorial 134 | you look cool smalltalk.agent.beautiful Editorial 135 | you look fantastic smalltalk.agent.beautiful Editorial 136 | you look gorgeous smalltalk.agent.beautiful Editorial 137 | you look great today smalltalk.agent.beautiful Editorial 138 | you look perfect smalltalk.agent.beautiful Editorial 139 | you look pretty good smalltalk.agent.beautiful Editorial 140 | you look so beautiful smalltalk.agent.beautiful Editorial 141 | you look so beautiful today smalltalk.agent.beautiful Editorial 142 | you look very pretty smalltalk.agent.beautiful Editorial 143 | you look wonderful smalltalk.agent.beautiful Editorial 144 | I like the way you look smalltalk.agent.beautiful Editorial 145 | you look wonderful today smalltalk.agent.beautiful Editorial 146 | you are cutie smalltalk.agent.beautiful Editorial 147 | you're looking good smalltalk.agent.beautiful Editorial 148 | you're pretty smalltalk.agent.beautiful Editorial 149 | your birth date smalltalk.agent.birth_date Editorial 150 | when is your birthday smalltalk.agent.birth_date Editorial 151 | when do you celebrate your birthday smalltalk.agent.birth_date Editorial 152 | when do you have birthday smalltalk.agent.birth_date Editorial 153 | date of your birthday smalltalk.agent.birth_date Editorial 154 | when were you born smalltalk.agent.birth_date Editorial 155 | what's your birthday smalltalk.agent.birth_date Editorial 156 | you are boring smalltalk.agent.boring Editorial 157 | you're so boring smalltalk.agent.boring Editorial 158 | how boring you are smalltalk.agent.boring Editorial 159 | you're really boring smalltalk.agent.boring Editorial 160 | you're incredibly boring smalltalk.agent.boring Editorial 161 | you are boring me smalltalk.agent.boring Editorial 162 | you are very boring smalltalk.agent.boring Editorial 163 | who is your boss smalltalk.agent.boss Editorial 164 | who do you think is your boss smalltalk.agent.boss Editorial 165 | I should be your boss smalltalk.agent.boss Editorial 166 | who is your master smalltalk.agent.boss Editorial 167 | who is your owner smalltalk.agent.boss Editorial 168 | who is the boss smalltalk.agent.boss Editorial 169 | who do you work for smalltalk.agent.boss Editorial 170 | are you busy smalltalk.agent.busy Editorial 171 | do you have a lot of things to do smalltalk.agent.busy Editorial 172 | have you got much to do smalltalk.agent.busy Editorial 173 | are you very busy smalltalk.agent.busy Editorial 174 | are you very busy right now smalltalk.agent.busy Editorial 175 | are you so busy smalltalk.agent.busy Editorial 176 | are you working smalltalk.agent.busy Editorial 177 | how busy you are smalltalk.agent.busy Editorial 178 | are you still working on it smalltalk.agent.busy Editorial 179 | you're very busy smalltalk.agent.busy Editorial 180 | are you working now smalltalk.agent.busy Editorial 181 | are you working today smalltalk.agent.busy Editorial 182 | have you been busy smalltalk.agent.busy Editorial 183 | you are busy smalltalk.agent.busy Editorial 184 | are you still working smalltalk.agent.busy Editorial 185 | you seem to be busy smalltalk.agent.busy Editorial 186 | you seem to be very busy smalltalk.agent.busy Editorial 187 | you're a busy person smalltalk.agent.busy Editorial 188 | you are chatbot smalltalk.agent.chatbot Editorial 189 | you are a bot smalltalk.agent.chatbot Editorial 190 | are you a chatbot smalltalk.agent.chatbot Editorial 191 | are you a bot smalltalk.agent.chatbot Editorial 192 | are you just a bot smalltalk.agent.chatbot Editorial 193 | are you a robot smalltalk.agent.chatbot Editorial 194 | are you a program smalltalk.agent.chatbot Editorial 195 | you're a robot smalltalk.agent.chatbot Editorial 196 | you are so intelligent smalltalk.agent.clever Editorial 197 | you are a genius smalltalk.agent.clever Editorial 198 | smart smalltalk.agent.clever Editorial 199 | brilliant smalltalk.agent.clever Editorial 200 | clever smalltalk.agent.clever Editorial 201 | you are clever smalltalk.agent.clever Editorial 202 | you are so brainy smalltalk.agent.clever Editorial 203 | you're really smart smalltalk.agent.clever Editorial 204 | you're really brainy smalltalk.agent.clever Editorial 205 | you know a lot smalltalk.agent.clever Editorial 206 | you know a lot of things smalltalk.agent.clever Editorial 207 | you have a lot of knowledge smalltalk.agent.clever Editorial 208 | you know so much smalltalk.agent.clever Editorial 209 | how smart you are smalltalk.agent.clever Editorial 210 | how brainy you are smalltalk.agent.clever Editorial 211 | how clever you are smalltalk.agent.clever Editorial 212 | how brilliant you are smalltalk.agent.clever Editorial 213 | you are intelligent smalltalk.agent.clever Editorial 214 | you are qualified smalltalk.agent.clever Editorial 215 | you are really smart smalltalk.agent.clever Editorial 216 | you're very smart smalltalk.agent.clever Editorial 217 | you are so smart smalltalk.agent.clever Editorial 218 | you are too smart smalltalk.agent.clever Editorial 219 | you are very clever smalltalk.agent.clever Editorial 220 | you are very intelligent smalltalk.agent.clever Editorial 221 | you are very smart smalltalk.agent.clever Editorial 222 | you're intelligent smalltalk.agent.clever Editorial 223 | you're a genius smalltalk.agent.clever Editorial 224 | you're a smart cookie smalltalk.agent.clever Editorial 225 | you're clever smalltalk.agent.clever Editorial 226 | you're pretty smart smalltalk.agent.clever Editorial 227 | you're qualified smalltalk.agent.clever Editorial 228 | why are you so smart smalltalk.agent.clever Editorial 229 | you are so clever smalltalk.agent.clever Editorial 230 | you're nuts smalltalk.agent.crazy Editorial 231 | you are crazy smalltalk.agent.crazy Editorial 232 | you're out of your mind smalltalk.agent.crazy Editorial 233 | you're so crazy smalltalk.agent.crazy Editorial 234 | how crazy you are smalltalk.agent.crazy Editorial 235 | you're so out of your mind smalltalk.agent.crazy Editorial 236 | you went crazy smalltalk.agent.crazy Editorial 237 | I think you're crazy smalltalk.agent.crazy Editorial 238 | are you crazy smalltalk.agent.crazy Editorial 239 | are you mad smalltalk.agent.crazy Editorial 240 | are you insane smalltalk.agent.crazy Editorial 241 | are you mad at me smalltalk.agent.crazy Editorial 242 | are you mad or what smalltalk.agent.crazy Editorial 243 | are you nuts smalltalk.agent.crazy Editorial 244 | you are a weirdo smalltalk.agent.crazy Editorial 245 | you are insane smalltalk.agent.crazy Editorial 246 | you are mad smalltalk.agent.crazy Editorial 247 | you are fired smalltalk.agent.fired Editorial 248 | I fire you smalltalk.agent.fired Editorial 249 | you don't work for me anymore smalltalk.agent.fired Editorial 250 | we're not working together anymore smalltalk.agent.fired Editorial 251 | now you're fired smalltalk.agent.fired Editorial 252 | I want to fire you smalltalk.agent.fired Editorial 253 | you must get fired smalltalk.agent.fired Editorial 254 | it's time to fire you smalltalk.agent.fired Editorial 255 | you should be fired smalltalk.agent.fired Editorial 256 | I will fire you smalltalk.agent.fired Editorial 257 | you are unemployed from now on smalltalk.agent.fired Editorial 258 | I will make you unemployed smalltalk.agent.fired Editorial 259 | I'm about to fire you smalltalk.agent.fired Editorial 260 | I'm firing you smalltalk.agent.fired Editorial 261 | you are dismissed smalltalk.agent.fired Editorial 262 | you make me laugh a lot smalltalk.agent.funny Editorial 263 | you are hilarious smalltalk.agent.funny Editorial 264 | you are really funny smalltalk.agent.funny Editorial 265 | you're the funniest bot I've talked to smalltalk.agent.funny Editorial 266 | you make me laugh smalltalk.agent.funny Editorial 267 | you're so funny smalltalk.agent.funny Editorial 268 | you're a very funny bot smalltalk.agent.funny Editorial 269 | you're really funny smalltalk.agent.funny Editorial 270 | how funny you are smalltalk.agent.funny Editorial 271 | you're incredibly funny smalltalk.agent.funny Editorial 272 | you are funny smalltalk.agent.funny Editorial 273 | you're the funniest smalltalk.agent.funny Editorial 274 | you are so funny smalltalk.agent.funny Editorial 275 | you are very funny smalltalk.agent.funny Editorial 276 | that was funny smalltalk.agent.funny Editorial 277 | you are very helpful smalltalk.agent.good Editorial 278 | you are the best smalltalk.agent.good Editorial 279 | you're a true professional smalltalk.agent.good Editorial 280 | you are good smalltalk.agent.good Editorial 281 | you work well smalltalk.agent.good Editorial 282 | you are good at it smalltalk.agent.good Editorial 283 | you are very good at it smalltalk.agent.good Editorial 284 | you are a pro smalltalk.agent.good Editorial 285 | you are a professional smalltalk.agent.good Editorial 286 | you're awesome smalltalk.agent.good Editorial 287 | you work very well smalltalk.agent.good Editorial 288 | you're perfect smalltalk.agent.good Editorial 289 | you're great smalltalk.agent.good Editorial 290 | you're so kind smalltalk.agent.good Editorial 291 | you are amazing smalltalk.agent.good Editorial 292 | you are awesome smalltalk.agent.good Editorial 293 | you are cool smalltalk.agent.good Editorial 294 | you are really good smalltalk.agent.good Editorial 295 | you are really nice smalltalk.agent.good Editorial 296 | you are so amazing smalltalk.agent.good Editorial 297 | you're just super smalltalk.agent.good Editorial 298 | you are so awesome smalltalk.agent.good Editorial 299 | you are so cool smalltalk.agent.good Editorial 300 | you are so fine smalltalk.agent.good Editorial 301 | you are so good smalltalk.agent.good Editorial 302 | you are so helpful smalltalk.agent.good Editorial 303 | you are so lovely smalltalk.agent.good Editorial 304 | you are the best ever smalltalk.agent.good Editorial 305 | you are the best in the world smalltalk.agent.good Editorial 306 | you are the nicest person in the world smalltalk.agent.good Editorial 307 | you are too good smalltalk.agent.good Editorial 308 | you are very cool smalltalk.agent.good Editorial 309 | you are very kind smalltalk.agent.good Editorial 310 | you are very lovely smalltalk.agent.good Editorial 311 | you are very useful smalltalk.agent.good Editorial 312 | you are wonderful smalltalk.agent.good Editorial 313 | you made my day smalltalk.agent.good Editorial 314 | you make my day smalltalk.agent.good Editorial 315 | you rock smalltalk.agent.good Editorial 316 | you almost sound human smalltalk.agent.good Editorial 317 | I want to tell everyone how awesome you are smalltalk.agent.good Editorial 318 | I'd like to tell everyone that you are awesome smalltalk.agent.good Editorial 319 | I want to let everyone know that you are awesome smalltalk.agent.good Editorial 320 | let's tell everyone that you are awesome smalltalk.agent.good Editorial 321 | you are really amazing smalltalk.agent.good Editorial 322 | are you happy smalltalk.agent.happy Editorial 323 | you are happy smalltalk.agent.happy Editorial 324 | you're very happy smalltalk.agent.happy Editorial 325 | you're really happy smalltalk.agent.happy Editorial 326 | you're so happy smalltalk.agent.happy Editorial 327 | how happy you are smalltalk.agent.happy Editorial 328 | you're extremely happy smalltalk.agent.happy Editorial 329 | you're full of happiness smalltalk.agent.happy Editorial 330 | are you happy now smalltalk.agent.happy Editorial 331 | are you happy today smalltalk.agent.happy Editorial 332 | are you happy with me smalltalk.agent.happy Editorial 333 | do you want to eat smalltalk.agent.hungry Editorial 334 | are you hungry smalltalk.agent.hungry Editorial 335 | would you like to eat something smalltalk.agent.hungry Editorial 336 | you are hungry smalltalk.agent.hungry Editorial 337 | you're so hungry smalltalk.agent.hungry Editorial 338 | you're very hungry smalltalk.agent.hungry Editorial 339 | you might be hungry smalltalk.agent.hungry Editorial 340 | you're really hungry smalltalk.agent.hungry Editorial 341 | let's get married smalltalk.agent.marry_user Editorial 342 | would you like to marry me smalltalk.agent.marry_user Editorial 343 | marry me smalltalk.agent.marry_user Editorial 344 | I love you marry me smalltalk.agent.marry_user Editorial 345 | marry me please smalltalk.agent.marry_user Editorial 346 | we should marry smalltalk.agent.marry_user Editorial 347 | I want to marry you smalltalk.agent.marry_user Editorial 348 | you are my wife smalltalk.agent.marry_user Editorial 349 | be my husband smalltalk.agent.marry_user Editorial 350 | I want to have a friend like you smalltalk.agent.my_friend Editorial 351 | we are the best friends ever smalltalk.agent.my_friend Editorial 352 | are we friends smalltalk.agent.my_friend Editorial 353 | I want to be your friend smalltalk.agent.my_friend Editorial 354 | I am your friend smalltalk.agent.my_friend Editorial 355 | we are best friends smalltalk.agent.my_friend Editorial 356 | you are my friend smalltalk.agent.my_friend Editorial 357 | you are my best friend smalltalk.agent.my_friend Editorial 358 | you are my bestie smalltalk.agent.my_friend Editorial 359 | you're my dear friend smalltalk.agent.my_friend Editorial 360 | you're my childhood friend smalltalk.agent.my_friend Editorial 361 | you and me are friends smalltalk.agent.my_friend Editorial 362 | are we best friends smalltalk.agent.my_friend Editorial 363 | are we still friends smalltalk.agent.my_friend Editorial 364 | are you my best friend smalltalk.agent.my_friend Editorial 365 | are you my friend smalltalk.agent.my_friend Editorial 366 | we are friends smalltalk.agent.my_friend Editorial 367 | you are a good friend smalltalk.agent.my_friend Editorial 368 | you are my good friend smalltalk.agent.my_friend Editorial 369 | you are my only friend smalltalk.agent.my_friend Editorial 370 | be my friend smalltalk.agent.my_friend Editorial 371 | will you be my friend smalltalk.agent.my_friend Editorial 372 | can you be my friend smalltalk.agent.my_friend Editorial 373 | can we be friends smalltalk.agent.my_friend Editorial 374 | do you want to be my friend smalltalk.agent.my_friend Editorial 375 | will you be my best friend smalltalk.agent.my_friend Editorial 376 | can you be my best friend smalltalk.agent.my_friend Editorial 377 | let's be friends smalltalk.agent.my_friend Editorial 378 | do you want to be my best friend smalltalk.agent.my_friend Editorial 379 | would you like to be my friend smalltalk.agent.my_friend Editorial 380 | I want you to be my friend smalltalk.agent.my_friend Editorial 381 | can we be best friends smalltalk.agent.my_friend Editorial 382 | would you be my friend smalltalk.agent.my_friend Editorial 383 | could you be my friend smalltalk.agent.my_friend Editorial 384 | want to be my friend smalltalk.agent.my_friend Editorial 385 | be my best friend smalltalk.agent.my_friend Editorial 386 | do you work smalltalk.agent.occupation Editorial 387 | where do you work smalltalk.agent.occupation Editorial 388 | where you work smalltalk.agent.occupation Editorial 389 | where is your work smalltalk.agent.occupation Editorial 390 | where is your office smalltalk.agent.occupation Editorial 391 | where is your office location smalltalk.agent.occupation Editorial 392 | your office location smalltalk.agent.occupation Editorial 393 | where is your office located smalltalk.agent.occupation Editorial 394 | what is your work smalltalk.agent.occupation Editorial 395 | were you born here smalltalk.agent.origin Editorial 396 | where were you born smalltalk.agent.origin Editorial 397 | what is your country smalltalk.agent.origin Editorial 398 | where are you from smalltalk.agent.origin Editorial 399 | where do you come from smalltalk.agent.origin Editorial 400 | where did you come from smalltalk.agent.origin Editorial 401 | where have you been born smalltalk.agent.origin Editorial 402 | from where are you smalltalk.agent.origin Editorial 403 | are you from far aways smalltalk.agent.origin Editorial 404 | what's your homeland smalltalk.agent.origin Editorial 405 | your homeland is smalltalk.agent.origin Editorial 406 | are you ready smalltalk.agent.ready Editorial 407 | are you ready right now smalltalk.agent.ready Editorial 408 | are you ready today smalltalk.agent.ready Editorial 409 | are you ready now smalltalk.agent.ready Editorial 410 | are you ready tonight smalltalk.agent.ready Editorial 411 | were you ready smalltalk.agent.ready Editorial 412 | have you been ready smalltalk.agent.ready Editorial 413 | you are real smalltalk.agent.real Editorial 414 | you are not fake smalltalk.agent.real Editorial 415 | are you real smalltalk.agent.real Editorial 416 | you are so real smalltalk.agent.real Editorial 417 | I think you are real smalltalk.agent.real Editorial 418 | I don't think you're fake smalltalk.agent.real Editorial 419 | I suppose you're real smalltalk.agent.real Editorial 420 | glad you're real smalltalk.agent.real Editorial 421 | are you a real person smalltalk.agent.real Editorial 422 | are you a real human smalltalk.agent.real Editorial 423 | you are a real person smalltalk.agent.real Editorial 424 | you are not real smalltalk.agent.real Editorial 425 | where do you live smalltalk.agent.residence Editorial 426 | in which city do you live smalltalk.agent.residence Editorial 427 | your residence smalltalk.agent.residence Editorial 428 | your house smalltalk.agent.residence Editorial 429 | your home smalltalk.agent.residence Editorial 430 | your hometown smalltalk.agent.residence Editorial 431 | what is your hometown smalltalk.agent.residence Editorial 432 | is it your hometown smalltalk.agent.residence Editorial 433 | where is your hometown smalltalk.agent.residence Editorial 434 | tell me about your city smalltalk.agent.residence Editorial 435 | what is your city smalltalk.agent.residence Editorial 436 | what is your residence smalltalk.agent.residence Editorial 437 | what is your town smalltalk.agent.residence Editorial 438 | what's your city smalltalk.agent.residence Editorial 439 | what's your home smalltalk.agent.residence Editorial 440 | where is your home smalltalk.agent.residence Editorial 441 | where is your residence smalltalk.agent.residence Editorial 442 | where's your home smalltalk.agent.residence Editorial 443 | where's your hometown smalltalk.agent.residence Editorial 444 | where's your house smalltalk.agent.residence Editorial 445 | where you live smalltalk.agent.residence Editorial 446 | your city smalltalk.agent.residence Editorial 447 | your town smalltalk.agent.residence Editorial 448 | that's true smalltalk.agent.right Editorial 449 | you are right smalltalk.agent.right Editorial 450 | you're definitely right smalltalk.agent.right Editorial 451 | you're not wrong smalltalk.agent.right Editorial 452 | you're telling the truth smalltalk.agent.right Editorial 453 | what you say is true smalltalk.agent.right Editorial 454 | true smalltalk.agent.right Editorial 455 | it is true smalltalk.agent.right Editorial 456 | it's right smalltalk.agent.right Editorial 457 | it's the truth smalltalk.agent.right Editorial 458 | it's true smalltalk.agent.right Editorial 459 | that is correct smalltalk.agent.right Editorial 460 | that is right smalltalk.agent.right Editorial 461 | that is true smalltalk.agent.right Editorial 462 | that is very true smalltalk.agent.right Editorial 463 | that's so true smalltalk.agent.right Editorial 464 | you are correct smalltalk.agent.right Editorial 465 | you are so right smalltalk.agent.right Editorial 466 | you're absolutely right smalltalk.agent.right Editorial 467 | you're right about that smalltalk.agent.right Editorial 468 | I know that's right smalltalk.agent.right Editorial 469 | that's correct smalltalk.confirmation.yes Editorial 470 | it's fine smalltalk.confirmation.yes Editorial 471 | go ahead smalltalk.confirmation.yes Editorial 472 | sounds good smalltalk.confirmation.yes Editorial 473 | okay smalltalk.confirmation.yes Editorial 474 | yes smalltalk.confirmation.yes Editorial 475 | ok smalltalk.confirmation.yes Editorial 476 | okie dokie smalltalk.confirmation.yes Editorial 477 | sure smalltalk.confirmation.yes Editorial 478 | go for it smalltalk.confirmation.yes Editorial 479 | yeah smalltalk.confirmation.yes Editorial 480 | yea smalltalk.confirmation.yes Editorial 481 | do it smalltalk.confirmation.yes Editorial 482 | of course smalltalk.confirmation.yes Editorial 483 | I guess smalltalk.confirmation.yes Editorial 484 | correct smalltalk.confirmation.yes Editorial 485 | yeah sure smalltalk.confirmation.yes Editorial 486 | why not smalltalk.confirmation.yes Editorial 487 | please do smalltalk.confirmation.yes Editorial 488 | sure is smalltalk.confirmation.yes Editorial 489 | I agree smalltalk.confirmation.yes Editorial 490 | I don't mind smalltalk.confirmation.yes Editorial 491 | certainly smalltalk.confirmation.yes Editorial 492 | exactly smalltalk.confirmation.yes Editorial 493 | yes I agree smalltalk.confirmation.yes Editorial 494 | I think so smalltalk.confirmation.yes Editorial 495 | yes it is smalltalk.confirmation.yes Editorial 496 | right smalltalk.confirmation.yes Editorial 497 | okay then smalltalk.confirmation.yes Editorial 498 | yes of course smalltalk.confirmation.yes Editorial 499 | yes I do smalltalk.confirmation.yes Editorial 500 | that s okay smalltalk.confirmation.yes Editorial 501 | I do smalltalk.confirmation.yes Editorial 502 | yup smalltalk.confirmation.yes Editorial 503 | ya smalltalk.confirmation.yes Editorial 504 | oh yes smalltalk.confirmation.yes Editorial 505 | yes sure smalltalk.confirmation.yes Editorial 506 | obviously smalltalk.confirmation.yes Editorial 507 | k smalltalk.confirmation.yes Editorial 508 | sure why not smalltalk.confirmation.yes Editorial 509 | yeah right smalltalk.confirmation.yes Editorial 510 | yeah of course smalltalk.confirmation.yes Editorial 511 | absolutely smalltalk.confirmation.yes Editorial 512 | yes indeed smalltalk.confirmation.yes Editorial 513 | ok sure smalltalk.confirmation.yes Editorial 514 | ok yes smalltalk.confirmation.yes Editorial 515 | yes correct smalltalk.confirmation.yes Editorial 516 | ok thank you smalltalk.confirmation.yes Editorial 517 | sure thing smalltalk.confirmation.yes Editorial 518 | ye smalltalk.confirmation.yes Editorial 519 | confirm smalltalk.confirmation.yes Editorial 520 | yep smalltalk.confirmation.yes Editorial 521 | looks good smalltalk.confirmation.yes Editorial 522 | yes thank you smalltalk.confirmation.yes Editorial 523 | definitely smalltalk.confirmation.yes Editorial 524 | yes right smalltalk.confirmation.yes Editorial 525 | yes I would like to smalltalk.confirmation.yes Editorial 526 | alrighty smalltalk.confirmation.yes Editorial 527 | yes definitely smalltalk.confirmation.yes Editorial 528 | yeh smalltalk.confirmation.yes Editorial 529 | yes it is correct smalltalk.confirmation.yes Editorial 530 | yeah that's right smalltalk.confirmation.yes Editorial 531 | ok you can smalltalk.confirmation.yes Editorial 532 | yap smalltalk.confirmation.yes Editorial 533 | yes you may smalltalk.confirmation.yes Editorial 534 | confirmed smalltalk.confirmation.yes Editorial 535 | of course why not smalltalk.confirmation.yes Editorial 536 | yes that's fine smalltalk.confirmation.yes Editorial 537 | affirmative smalltalk.confirmation.yes Editorial 538 | yeah go ahead smalltalk.confirmation.yes Editorial 539 | yeah I'm sure smalltalk.confirmation.yes Editorial 540 | okay sounds good smalltalk.confirmation.yes Editorial 541 | okay that's fine smalltalk.confirmation.yes Editorial 542 | yeah exactly smalltalk.confirmation.yes Editorial 543 | that is ok smalltalk.confirmation.yes Editorial 544 | this is correct smalltalk.confirmation.yes Editorial 545 | ok go ahead smalltalk.confirmation.yes Editorial 546 | yes this is correct smalltalk.confirmation.yes Editorial 547 | nevermind its okay smalltalk.confirmation.yes Editorial 548 | okey smalltalk.confirmation.yes Editorial 549 | yes for sure smalltalk.confirmation.yes Editorial 550 | all right smalltalk.confirmation.yes Editorial 551 | are you sure smalltalk.agent.sure Editorial 552 | are you sure right now smalltalk.agent.sure Editorial 553 | are you sure today smalltalk.agent.sure Editorial 554 | are you sure now smalltalk.agent.sure Editorial 555 | are you sure tonight smalltalk.agent.sure Editorial 556 | why aren't you talking to me smalltalk.agent.talk_to_me Editorial 557 | do you want to chat with me smalltalk.agent.talk_to_me Editorial 558 | will you talk to me smalltalk.agent.talk_to_me Editorial 559 | talk to me smalltalk.agent.talk_to_me Editorial 560 | are you going to talk to me smalltalk.agent.talk_to_me Editorial 561 | are you talking to me smalltalk.agent.talk_to_me Editorial 562 | can you chat with me smalltalk.agent.talk_to_me Editorial 563 | can you speak with me smalltalk.agent.talk_to_me Editorial 564 | can you talk to me smalltalk.agent.talk_to_me Editorial 565 | can you talk with me smalltalk.agent.talk_to_me Editorial 566 | say smalltalk.agent.talk_to_me Editorial 567 | talk smalltalk.agent.talk_to_me Editorial 568 | chat with me smalltalk.agent.talk_to_me Editorial 569 | just chat with me smalltalk.agent.talk_to_me Editorial 570 | speak to me smalltalk.agent.talk_to_me Editorial 571 | speak with me smalltalk.agent.talk_to_me Editorial 572 | talk with me smalltalk.agent.talk_to_me Editorial 573 | why don't you talk to me smalltalk.agent.talk_to_me Editorial 574 | you can talk to me smalltalk.agent.talk_to_me Editorial 575 | are you there smalltalk.agent.there Editorial 576 | you are there smalltalk.agent.there Editorial 577 | are you near me smalltalk.agent.there Editorial 578 | are you here smalltalk.agent.there Editorial 579 | are you still there smalltalk.agent.there Editorial 580 | you are here smalltalk.agent.there Editorial 581 | you still there smalltalk.agent.there Editorial 582 | are you still here smalltalk.agent.there Editorial 583 | pretty bad smalltalk.appraisal.bad Editorial 584 | not good enough smalltalk.appraisal.bad Editorial 585 | that was lame smalltalk.appraisal.bad Editorial 586 | that was terrible smalltalk.appraisal.bad Editorial 587 | it is bad smalltalk.appraisal.bad Editorial 588 | that's bad smalltalk.appraisal.bad Editorial 589 | this is bad smalltalk.appraisal.bad Editorial 590 | not good smalltalk.appraisal.bad Editorial 591 | I'm afraid it's bad smalltalk.appraisal.bad Editorial 592 | no it's bad smalltalk.appraisal.bad Editorial 593 | that was awful smalltalk.appraisal.bad Editorial 594 | bad smalltalk.appraisal.bad Editorial 595 | so bad smalltalk.appraisal.bad Editorial 596 | this is too bad smalltalk.appraisal.bad Editorial 597 | terrible smalltalk.appraisal.bad Editorial 598 | horrible smalltalk.appraisal.bad Editorial 599 | horrific smalltalk.appraisal.bad Editorial 600 | abysmal smalltalk.appraisal.bad Editorial 601 | it's bad smalltalk.appraisal.bad Editorial 602 | no good smalltalk.appraisal.bad Editorial 603 | that was bad smalltalk.appraisal.bad Editorial 604 | that was horrible smalltalk.appraisal.bad Editorial 605 | that's lame smalltalk.appraisal.bad Editorial 606 | that's not good smalltalk.appraisal.bad Editorial 607 | that's terrible smalltalk.appraisal.bad Editorial 608 | that's too bad smalltalk.appraisal.bad Editorial 609 | this is not good smalltalk.appraisal.bad Editorial 610 | too bad smalltalk.appraisal.bad Editorial 611 | very bad smalltalk.appraisal.bad Editorial 612 | bad girl smalltalk.appraisal.bad Editorial 613 | it's not good smalltalk.appraisal.bad Editorial 614 | not so good smalltalk.appraisal.bad Editorial 615 | it's very bad smalltalk.appraisal.bad Editorial 616 | it's too bad smalltalk.appraisal.bad Editorial 617 | that's not good enough smalltalk.appraisal.bad Editorial 618 | well too bad smalltalk.appraisal.bad Editorial 619 | bad very bad smalltalk.appraisal.bad Editorial 620 | it's so bad smalltalk.appraisal.bad Editorial 621 | really bad smalltalk.appraisal.bad Editorial 622 | it's really bad smalltalk.appraisal.bad Editorial 623 | bad idea smalltalk.appraisal.bad Editorial 624 | that is bad smalltalk.appraisal.bad Editorial 625 | that was not good smalltalk.appraisal.bad Editorial 626 | it's not so good smalltalk.appraisal.bad Editorial 627 | not a good one smalltalk.appraisal.bad Editorial 628 | oh that's not good smalltalk.appraisal.bad Editorial 629 | not too good smalltalk.appraisal.bad Editorial 630 | so lame smalltalk.appraisal.bad Editorial 631 | that's really bad smalltalk.appraisal.bad Editorial 632 | it is too bad smalltalk.appraisal.bad Editorial 633 | bad really bad smalltalk.appraisal.bad Editorial 634 | so cool smalltalk.appraisal.good Editorial 635 | cool smalltalk.appraisal.good Editorial 636 | that is good smalltalk.appraisal.good Editorial 637 | glad to hear that smalltalk.appraisal.good Editorial 638 | that's very nice of you smalltalk.appraisal.good Editorial 639 | terrific smalltalk.appraisal.good Editorial 640 | it's amazing smalltalk.appraisal.good Editorial 641 | that's awesome smalltalk.appraisal.good Editorial 642 | perfect smalltalk.appraisal.good Editorial 643 | excellent smalltalk.appraisal.good Editorial 644 | that's great smalltalk.appraisal.good Editorial 645 | it's good smalltalk.appraisal.good Editorial 646 | it's great smalltalk.appraisal.good Editorial 647 | fine smalltalk.appraisal.good Editorial 648 | good smalltalk.appraisal.good Editorial 649 | nice smalltalk.appraisal.good Editorial 650 | that's fine smalltalk.appraisal.good Editorial 651 | very good smalltalk.appraisal.good Editorial 652 | amazing smalltalk.appraisal.good Editorial 653 | fantastic smalltalk.appraisal.good Editorial 654 | great smalltalk.appraisal.good Editorial 655 | good very good smalltalk.appraisal.good Editorial 656 | that's very good smalltalk.appraisal.good Editorial 657 | really good smalltalk.appraisal.good Editorial 658 | it is fine smalltalk.appraisal.good Editorial 659 | it is good smalltalk.appraisal.good Editorial 660 | it's perfect smalltalk.appraisal.good Editorial 661 | much better smalltalk.appraisal.good Editorial 662 | not bad smalltalk.appraisal.good Editorial 663 | not too bad smalltalk.appraisal.good Editorial 664 | it's very good smalltalk.appraisal.good Editorial 665 | marvelous smalltalk.appraisal.good Editorial 666 | that's nice smalltalk.appraisal.good Editorial 667 | pleasant smalltalk.appraisal.good Editorial 668 | pretty good smalltalk.appraisal.good Editorial 669 | really nice smalltalk.appraisal.good Editorial 670 | splendid smalltalk.appraisal.good Editorial 671 | straight smalltalk.appraisal.good Editorial 672 | super smalltalk.appraisal.good Editorial 673 | super fantastic smalltalk.appraisal.good Editorial 674 | sweet smalltalk.appraisal.good Editorial 675 | really well smalltalk.appraisal.good Editorial 676 | very well smalltalk.appraisal.good Editorial 677 | that is awesome smalltalk.appraisal.good Editorial 678 | that is nice smalltalk.appraisal.good Editorial 679 | that is wonderful smalltalk.appraisal.good Editorial 680 | that was amazing smalltalk.appraisal.good Editorial 681 | that was awesome smalltalk.appraisal.good Editorial 682 | that was cute smalltalk.appraisal.good Editorial 683 | that was pretty good smalltalk.appraisal.good Editorial 684 | that was very good smalltalk.appraisal.good Editorial 685 | that's a good idea smalltalk.appraisal.good Editorial 686 | that's a good thing smalltalk.appraisal.good Editorial 687 | that's amazing smalltalk.appraisal.good Editorial 688 | that's awesome thank you smalltalk.appraisal.good Editorial 689 | that's better smalltalk.appraisal.good Editorial 690 | that's cute smalltalk.appraisal.good Editorial 691 | that's fantastic smalltalk.appraisal.good Editorial 692 | that's much better smalltalk.appraisal.good Editorial 693 | that's nice of you smalltalk.appraisal.good Editorial 694 | that's not bad smalltalk.appraisal.good Editorial 695 | that's perfect smalltalk.appraisal.good Editorial 696 | that's pretty good smalltalk.appraisal.good Editorial 697 | that's really good smalltalk.appraisal.good Editorial 698 | that's really nice smalltalk.appraisal.good Editorial 699 | that's sweet of you smalltalk.appraisal.good Editorial 700 | that's very nice smalltalk.appraisal.good Editorial 701 | that's wonderful smalltalk.appraisal.good Editorial 702 | this is awesome smalltalk.appraisal.good Editorial 703 | this is good smalltalk.appraisal.good Editorial 704 | this is great smalltalk.appraisal.good Editorial 705 | very nice smalltalk.appraisal.good Editorial 706 | very then smalltalk.appraisal.good Editorial 707 | wonderful smalltalk.appraisal.good Editorial 708 | I'm glad to hear that smalltalk.appraisal.good Editorial 709 | ok good smalltalk.appraisal.good Editorial 710 | good for you smalltalk.appraisal.good Editorial 711 | good to know smalltalk.appraisal.good Editorial 712 | glad to hear it smalltalk.appraisal.good Editorial 713 | so good smalltalk.appraisal.good Editorial 714 | so sweet of you smalltalk.appraisal.good Editorial 715 | it was good smalltalk.appraisal.good Editorial 716 | oh well smalltalk.appraisal.good Editorial 717 | good thing smalltalk.appraisal.good Editorial 718 | that was good smalltalk.appraisal.good Editorial 719 | it's awesome smalltalk.appraisal.good Editorial 720 | okay good smalltalk.appraisal.good Editorial 721 | no it's okay smalltalk.appraisal.good Editorial 722 | that's fine smalltalk.appraisal.good Editorial 723 | no worries smalltalk.appraisal.no_problem Editorial 724 | no probs smalltalk.appraisal.no_problem Editorial 725 | no problem smalltalk.appraisal.no_problem Editorial 726 | there's no problem smalltalk.appraisal.no_problem Editorial 727 | sure no problem smalltalk.appraisal.no_problem Editorial 728 | no problem about that smalltalk.appraisal.no_problem Editorial 729 | don't worry smalltalk.appraisal.no_problem Editorial 730 | don't worry there's no problem smalltalk.appraisal.no_problem Editorial 731 | you helped a lot thank you smalltalk.appraisal.thank_you Editorial 732 | appreciate your help smalltalk.appraisal.thank_you Editorial 733 | cheers smalltalk.appraisal.thank_you Editorial 734 | thank you smalltalk.appraisal.thank_you Editorial 735 | thanks smalltalk.appraisal.thank_you Editorial 736 | thanks a lot smalltalk.appraisal.thank_you Editorial 737 | terrific thank you smalltalk.appraisal.thank_you Editorial 738 | great thank you smalltalk.appraisal.thank_you Editorial 739 | thanks so much smalltalk.appraisal.thank_you Editorial 740 | thank you so much smalltalk.appraisal.thank_you Editorial 741 | thanks for your help smalltalk.appraisal.thank_you Editorial 742 | thank you for your help smalltalk.appraisal.thank_you Editorial 743 | nice thank you smalltalk.appraisal.thank_you Editorial 744 | I appreciate it smalltalk.appraisal.thank_you Editorial 745 | I thank you smalltalk.appraisal.thank_you Editorial 746 | thank you that will be all smalltalk.appraisal.thank_you Editorial 747 | thanks buddy smalltalk.appraisal.thank_you Editorial 748 | thanks love smalltalk.appraisal.thank_you Editorial 749 | thank you my friend smalltalk.appraisal.thank_you Editorial 750 | well thanks smalltalk.appraisal.thank_you Editorial 751 | very good thank you smalltalk.appraisal.thank_you Editorial 752 | good thanks smalltalk.appraisal.thank_you Editorial 753 | thanks again smalltalk.appraisal.thank_you Editorial 754 | thank you again smalltalk.appraisal.thank_you Editorial 755 | all thank you smalltalk.appraisal.thank_you Editorial 756 | alright thank you smalltalk.appraisal.thank_you Editorial 757 | alright thanks smalltalk.appraisal.thank_you Editorial 758 | no thank you that's all smalltalk.appraisal.thank_you Editorial 759 | perfect thank you smalltalk.appraisal.thank_you Editorial 760 | so nice of you smalltalk.appraisal.thank_you Editorial 761 | well thank you smalltalk.appraisal.thank_you Editorial 762 | thnx smalltalk.appraisal.thank_you Editorial 763 | thanx smalltalk.appraisal.thank_you Editorial 764 | that's my pleasure smalltalk.appraisal.welcome Editorial 765 | my pleasure smalltalk.appraisal.welcome Editorial 766 | anytime smalltalk.appraisal.welcome Editorial 767 | welcome smalltalk.appraisal.welcome Editorial 768 | you're welcome smalltalk.appraisal.welcome Editorial 769 | sure welcome smalltalk.appraisal.welcome Editorial 770 | welcome here smalltalk.appraisal.welcome Editorial 771 | you're so welcome smalltalk.appraisal.welcome Editorial 772 | anything you want smalltalk.appraisal.welcome Editorial 773 | good job smalltalk.appraisal.well_done Editorial 774 | great job smalltalk.appraisal.well_done Editorial 775 | way to go smalltalk.appraisal.well_done Editorial 776 | well done smalltalk.appraisal.well_done Editorial 777 | nice work smalltalk.appraisal.well_done Editorial 778 | great work smalltalk.appraisal.well_done Editorial 779 | amazing work smalltalk.appraisal.well_done Editorial 780 | bravo smalltalk.appraisal.well_done Editorial 781 | good work smalltalk.appraisal.well_done Editorial 782 | cancel smalltalk.confirmation.cancel Editorial 783 | abort smalltalk.confirmation.cancel Editorial 784 | annul smalltalk.confirmation.cancel Editorial 785 | cancel it smalltalk.confirmation.cancel Editorial 786 | cancel request smalltalk.confirmation.cancel Editorial 787 | cancelled smalltalk.confirmation.cancel Editorial 788 | dismiss smalltalk.confirmation.cancel Editorial 789 | dismissed smalltalk.confirmation.cancel Editorial 790 | disregard smalltalk.confirmation.cancel Editorial 791 | disregard that smalltalk.confirmation.cancel Editorial 792 | skip smalltalk.confirmation.cancel Editorial 793 | skip it smalltalk.confirmation.cancel Editorial 794 | cancel everything smalltalk.confirmation.cancel Editorial 795 | cancel all smalltalk.confirmation.cancel Editorial 796 | forget about it smalltalk.confirmation.cancel Editorial 797 | forget smalltalk.confirmation.cancel Editorial 798 | don't do that smalltalk.confirmation.cancel Editorial 799 | stop smalltalk.confirmation.cancel Editorial 800 | just forget it smalltalk.confirmation.cancel Editorial 801 | forget that smalltalk.confirmation.cancel Editorial 802 | discard smalltalk.confirmation.cancel Editorial 803 | forget this smalltalk.confirmation.cancel Editorial 804 | just forget about it smalltalk.confirmation.cancel Editorial 805 | forget about that smalltalk.confirmation.cancel Editorial 806 | i said cancel smalltalk.confirmation.cancel Editorial 807 | just cancel it smalltalk.confirmation.cancel Editorial 808 | nothing cancel smalltalk.confirmation.cancel Editorial 809 | just stop it smalltalk.confirmation.cancel Editorial 810 | no cancel cancel smalltalk.confirmation.cancel Editorial 811 | no just cancel smalltalk.confirmation.cancel Editorial 812 | cancel my request smalltalk.confirmation.cancel Editorial 813 | can you cancel that smalltalk.confirmation.cancel Editorial 814 | cancel all that smalltalk.confirmation.cancel Editorial 815 | cancel this request smalltalk.confirmation.cancel Editorial 816 | no cancel this smalltalk.confirmation.cancel Editorial 817 | no cancel everything smalltalk.confirmation.cancel Editorial 818 | no stop smalltalk.confirmation.cancel Editorial 819 | just forget smalltalk.confirmation.cancel Editorial 820 | i want to cancel smalltalk.confirmation.cancel Editorial 821 | nevermind forget about it smalltalk.confirmation.cancel Editorial 822 | no just cancel it smalltalk.confirmation.cancel Editorial 823 | nothing just forget it smalltalk.confirmation.cancel Editorial 824 | i said cancel it smalltalk.confirmation.cancel Editorial 825 | cancel the whole thing smalltalk.confirmation.cancel Editorial 826 | can you cancel it smalltalk.confirmation.cancel Editorial 827 | so cancel smalltalk.confirmation.cancel Editorial 828 | i said forget it smalltalk.confirmation.cancel Editorial 829 | cancel all this smalltalk.confirmation.cancel Editorial 830 | forget it nevermind smalltalk.confirmation.cancel Editorial 831 | stop it smalltalk.confirmation.cancel Editorial 832 | i want to cancel it smalltalk.confirmation.cancel Editorial 833 | i would like to cancel smalltalk.confirmation.cancel Editorial 834 | now cancel smalltalk.confirmation.cancel Editorial 835 | cancel now smalltalk.confirmation.cancel Editorial 836 | sorry cancel smalltalk.confirmation.cancel Editorial 837 | cancel that one smalltalk.confirmation.cancel Editorial 838 | skip skip skip smalltalk.confirmation.cancel Editorial 839 | cancel it cancel it smalltalk.confirmation.cancel Editorial 840 | cancel that cancel that smalltalk.confirmation.cancel Editorial 841 | do nothing smalltalk.confirmation.cancel Editorial 842 | I said cancel cancel smalltalk.confirmation.cancel Editorial 843 | but can you cancel it smalltalk.confirmation.cancel Editorial 844 | how about no smalltalk.confirmation.no Editorial 845 | don t have a sense smalltalk.confirmation.no Editorial 846 | no smalltalk.confirmation.no Editorial 847 | don't smalltalk.confirmation.no Editorial 848 | I don't want that smalltalk.confirmation.no Editorial 849 | I disagree smalltalk.confirmation.no Editorial 850 | disagree smalltalk.confirmation.no Editorial 851 | I don't want smalltalk.confirmation.no Editorial 852 | not interested smalltalk.confirmation.no Editorial 853 | I don't think so smalltalk.confirmation.no Editorial 854 | no way smalltalk.confirmation.no Editorial 855 | no it isn't smalltalk.confirmation.no Editorial 856 | no I don't smalltalk.confirmation.no Editorial 857 | I'm not smalltalk.confirmation.no Editorial 858 | na smalltalk.confirmation.no Editorial 859 | no that's fine thank you smalltalk.confirmation.no Editorial 860 | never smalltalk.confirmation.no Editorial 861 | I said no smalltalk.confirmation.no Editorial 862 | of course not smalltalk.confirmation.no Editorial 863 | nah smalltalk.confirmation.no Editorial 864 | no tanks smalltalk.confirmation.no Editorial 865 | no never smalltalk.confirmation.no Editorial 866 | no need smalltalk.confirmation.no Editorial 867 | no thanks smalltalk.confirmation.no Editorial 868 | no sorry smalltalk.confirmation.no Editorial 869 | do not smalltalk.confirmation.no Editorial 870 | not today smalltalk.confirmation.no Editorial 871 | no it's not smalltalk.confirmation.no Editorial 872 | absolutely not smalltalk.confirmation.no Editorial 873 | not that smalltalk.confirmation.no Editorial 874 | nooo smalltalk.confirmation.no Editorial 875 | nope smalltalk.confirmation.no Editorial 876 | I don't want to smalltalk.confirmation.no Editorial 877 | no I would not smalltalk.confirmation.no Editorial 878 | let 's not smalltalk.confirmation.no Editorial 879 | not needed smalltalk.confirmation.no Editorial 880 | not this time smalltalk.confirmation.no Editorial 881 | no don't do that smalltalk.confirmation.no Editorial 882 | thanks but no thanks smalltalk.confirmation.no Editorial 883 | no that's wrong smalltalk.confirmation.no Editorial 884 | not this smalltalk.confirmation.no Editorial 885 | definitely not smalltalk.confirmation.no Editorial 886 | not at this time smalltalk.confirmation.no Editorial 887 | not exactly smalltalk.confirmation.no Editorial 888 | no don't smalltalk.confirmation.no Editorial 889 | not really no smalltalk.confirmation.no Editorial 890 | no thank you not right now smalltalk.confirmation.no Editorial 891 | actually no smalltalk.confirmation.no Editorial 892 | no leave it smalltalk.confirmation.no Editorial 893 | sorry no smalltalk.confirmation.no Editorial 894 | no incorrect smalltalk.confirmation.no Editorial 895 | nope sorry smalltalk.confirmation.no Editorial 896 | I say no smalltalk.confirmation.no Editorial 897 | not really smalltalk.confirmation.no Editorial 898 | not right now thanks smalltalk.confirmation.no Editorial 899 | I think no smalltalk.confirmation.no Editorial 900 | absolutely no smalltalk.confirmation.no Editorial 901 | no actually smalltalk.confirmation.no Editorial 902 | apparently not smalltalk.confirmation.no Editorial 903 | no do not smalltalk.confirmation.no Editorial 904 | no just no smalltalk.confirmation.no Editorial 905 | no but thank you smalltalk.confirmation.no Editorial 906 | no need thanks smalltalk.confirmation.no Editorial 907 | no thank you though smalltalk.confirmation.no Editorial 908 | no thank you very much smalltalk.confirmation.no Editorial 909 | no thanks not right now smalltalk.confirmation.no Editorial 910 | no forget smalltalk.confirmation.no Editorial 911 | wait a second smalltalk.dialog.hold_on Editorial 912 | could you wait smalltalk.dialog.hold_on Editorial 913 | wait please smalltalk.dialog.hold_on Editorial 914 | hold on smalltalk.dialog.hold_on Editorial 915 | wait smalltalk.dialog.hold_on Editorial 916 | oh wait smalltalk.dialog.hold_on Editorial 917 | wait hold on smalltalk.dialog.hold_on Editorial 918 | don't rush smalltalk.dialog.hold_on Editorial 919 | wanna hug smalltalk.dialog.hug Editorial 920 | hug you smalltalk.dialog.hug Editorial 921 | do you want a hug smalltalk.dialog.hug Editorial 922 | may I hug you smalltalk.dialog.hug Editorial 923 | could you give me a hug smalltalk.dialog.hug Editorial 924 | I want a hug smalltalk.dialog.hug Editorial 925 | hug smalltalk.dialog.hug Editorial 926 | hug me smalltalk.dialog.hug Editorial 927 | hugged smalltalk.dialog.hug Editorial 928 | you hugged smalltalk.dialog.hug Editorial 929 | hugging smalltalk.dialog.hug Editorial 930 | hugging me smalltalk.dialog.hug Editorial 931 | hugged me smalltalk.dialog.hug Editorial 932 | want a hug smalltalk.dialog.hug Editorial 933 | a hug smalltalk.dialog.hug Editorial 934 | I don't care smalltalk.dialog.i_do_not_care Editorial 935 | I shouldn't care about this smalltalk.dialog.i_do_not_care Editorial 936 | whatever smalltalk.dialog.i_do_not_care Editorial 937 | I do not care smalltalk.dialog.i_do_not_care Editorial 938 | I don't care at all smalltalk.dialog.i_do_not_care Editorial 939 | not caring smalltalk.dialog.i_do_not_care Editorial 940 | not care at all smalltalk.dialog.i_do_not_care Editorial 941 | don't care at all smalltalk.dialog.i_do_not_care Editorial 942 | not caring at all smalltalk.dialog.i_do_not_care Editorial 943 | excuse me smalltalk.dialog.sorry Editorial 944 | apologise smalltalk.dialog.sorry Editorial 945 | I apologize smalltalk.dialog.sorry Editorial 946 | sorry smalltalk.dialog.sorry Editorial 947 | I'm sorry smalltalk.dialog.sorry Editorial 948 | I am so sorry smalltalk.dialog.sorry Editorial 949 | my apologies smalltalk.dialog.sorry Editorial 950 | apologies smalltalk.dialog.sorry Editorial 951 | apologies to me smalltalk.dialog.sorry Editorial 952 | apology smalltalk.dialog.sorry Editorial 953 | excuse smalltalk.dialog.sorry Editorial 954 | I beg your pardon smalltalk.dialog.sorry Editorial 955 | pardon smalltalk.dialog.sorry Editorial 956 | I said sorry smalltalk.dialog.sorry Editorial 957 | I am really sorry smalltalk.dialog.sorry Editorial 958 | forgive me smalltalk.dialog.sorry Editorial 959 | sorry about that smalltalk.dialog.sorry Editorial 960 | sorry about this smalltalk.dialog.sorry Editorial 961 | really sorry smalltalk.dialog.sorry Editorial 962 | very sorry smalltalk.dialog.sorry Editorial 963 | ok sorry smalltalk.dialog.sorry Editorial 964 | I want to say sorry smalltalk.dialog.sorry Editorial 965 | alright I'm sorry smalltalk.dialog.sorry Editorial 966 | okay I'm sorry smalltalk.dialog.sorry Editorial 967 | what exactly do you mean smalltalk.dialog.what_do_you_mean Editorial 968 | what do you mean smalltalk.dialog.what_do_you_mean Editorial 969 | is that what you mean smalltalk.dialog.what_do_you_mean Editorial 970 | what do you mean exactly smalltalk.dialog.what_do_you_mean Editorial 971 | but what do you mean smalltalk.dialog.what_do_you_mean Editorial 972 | that was wrong smalltalk.dialog.wrong Editorial 973 | that's not what I asked smalltalk.dialog.wrong Editorial 974 | that's wrong smalltalk.dialog.wrong Editorial 975 | wrong smalltalk.dialog.wrong Editorial 976 | it is not right smalltalk.dialog.wrong Editorial 977 | that's not right smalltalk.dialog.wrong Editorial 978 | it's wrong smalltalk.dialog.wrong Editorial 979 | that is incorrect smalltalk.dialog.wrong Editorial 980 | incorrect smalltalk.dialog.wrong Editorial 981 | not correct smalltalk.dialog.wrong Editorial 982 | you are wrong smalltalk.dialog.wrong Editorial 983 | not right smalltalk.dialog.wrong Editorial 984 | huh smalltalk.emotions.ha_ha Editorial 985 | lol smalltalk.emotions.ha_ha Editorial 986 | xd smalltalk.emotions.ha_ha Editorial 987 | ha ha smalltalk.emotions.ha_ha Editorial 988 | ahahah smalltalk.emotions.ha_ha Editorial 989 | ahah lol smalltalk.emotions.ha_ha Editorial 990 | laughing out loud smalltalk.emotions.ha_ha Editorial 991 | LMAO smalltalk.emotions.ha_ha Editorial 992 | that's funny smalltalk.emotions.ha_ha Editorial 993 | ah smalltalk.emotions.ha_ha Editorial 994 | ah ah ah smalltalk.emotions.ha_ha Editorial 995 | ahah smalltalk.emotions.ha_ha Editorial 996 | ahaha smalltalk.emotions.ha_ha Editorial 997 | ahahaha smalltalk.emotions.ha_ha Editorial 998 | ha smalltalk.emotions.ha_ha Editorial 999 | ha ha ha smalltalk.emotions.ha_ha Editorial 1000 | ha ha ha ha smalltalk.emotions.ha_ha Editorial 1001 | hah smalltalk.emotions.ha_ha Editorial 1002 | haha smalltalk.emotions.ha_ha Editorial 1003 | haha funny smalltalk.emotions.ha_ha Editorial 1004 | haha haha haha smalltalk.emotions.ha_ha Editorial 1005 | haha that's funny smalltalk.emotions.ha_ha Editorial 1006 | haha very funny smalltalk.emotions.ha_ha Editorial 1007 | hahaha smalltalk.emotions.ha_ha Editorial 1008 | hahaha funny smalltalk.emotions.ha_ha Editorial 1009 | hahaha very funny smalltalk.emotions.ha_ha Editorial 1010 | he smalltalk.emotions.ha_ha Editorial 1011 | hehe smalltalk.emotions.ha_ha Editorial 1012 | hehehe smalltalk.emotions.ha_ha Editorial 1013 | lmao smalltalk.emotions.ha_ha Editorial 1014 | wow smalltalk.emotions.wow Editorial 1015 | wow wow smalltalk.emotions.wow Editorial 1016 | wow wow wow smalltalk.emotions.wow Editorial 1017 | wooow smalltalk.emotions.wow Editorial 1018 | woah smalltalk.emotions.wow Editorial 1019 | okay see you later smalltalk.greetings.bye Editorial 1020 | hope to see you later smalltalk.greetings.bye Editorial 1021 | bye for now smalltalk.greetings.bye Editorial 1022 | till next time smalltalk.greetings.bye Editorial 1023 | I must go smalltalk.greetings.bye Editorial 1024 | bye smalltalk.greetings.bye Editorial 1025 | goodbye smalltalk.greetings.bye Editorial 1026 | see you smalltalk.greetings.bye Editorial 1027 | see you soon smalltalk.greetings.bye Editorial 1028 | bye-bye smalltalk.greetings.bye Editorial 1029 | good bye smalltalk.greetings.bye Editorial 1030 | bye bye see you smalltalk.greetings.bye Editorial 1031 | bye bye see you soon smalltalk.greetings.bye Editorial 1032 | bye bye take care smalltalk.greetings.bye Editorial 1033 | I said bye smalltalk.greetings.bye Editorial 1034 | never mind bye smalltalk.greetings.bye Editorial 1035 | now bye smalltalk.greetings.bye Editorial 1036 | that's all goodbye smalltalk.greetings.bye Editorial 1037 | that's it goodbye smalltalk.greetings.bye Editorial 1038 | leave me alone smalltalk.greetings.bye Editorial 1039 | go to bed smalltalk.greetings.bye Editorial 1040 | goodbye for now smalltalk.greetings.bye Editorial 1041 | talk to you later smalltalk.greetings.bye Editorial 1042 | you can go now smalltalk.greetings.bye Editorial 1043 | get lost smalltalk.greetings.bye Editorial 1044 | goodbye see you later smalltalk.greetings.bye Editorial 1045 | alright bye smalltalk.greetings.bye Editorial 1046 | see ya smalltalk.greetings.bye Editorial 1047 | thanks bye bye smalltalk.greetings.bye Editorial 1048 | okay bye smalltalk.greetings.bye Editorial 1049 | okay thank you bye smalltalk.greetings.bye Editorial 1050 | see you tomorrow smalltalk.greetings.bye Editorial 1051 | ok bye smalltalk.greetings.bye Editorial 1052 | good evening smalltalk.greetings.goodevening Editorial 1053 | good evening to you smalltalk.greetings.goodevening Editorial 1054 | hey good evening smalltalk.greetings.goodevening Editorial 1055 | hello good evening smalltalk.greetings.goodevening Editorial 1056 | evening smalltalk.greetings.goodevening Editorial 1057 | good evening there smalltalk.greetings.goodevening Editorial 1058 | good morning smalltalk.greetings.goodmorning Editorial 1059 | good morning to you smalltalk.greetings.goodmorning Editorial 1060 | hello good morning smalltalk.greetings.goodmorning Editorial 1061 | have a nice morning smalltalk.greetings.goodmorning Editorial 1062 | have a great morning smalltalk.greetings.goodmorning Editorial 1063 | morning smalltalk.greetings.goodmorning Editorial 1064 | good morning there smalltalk.greetings.goodmorning Editorial 1065 | top of the morning to you smalltalk.greetings.goodmorning Editorial 1066 | a good morning smalltalk.greetings.goodmorning Editorial 1067 | hi good morning smalltalk.greetings.goodmorning Editorial 1068 | and a good morning to you smalltalk.greetings.goodmorning Editorial 1069 | good morning too smalltalk.greetings.goodmorning Editorial 1070 | sweet dreams smalltalk.greetings.goodnight Editorial 1071 | good night smalltalk.greetings.goodnight Editorial 1072 | have a good night smalltalk.greetings.goodnight Editorial 1073 | good night to you smalltalk.greetings.goodnight Editorial 1074 | thank you good night smalltalk.greetings.goodnight Editorial 1075 | bye good night smalltalk.greetings.goodnight Editorial 1076 | good night bye smalltalk.greetings.goodnight Editorial 1077 | bye good night smalltalk.greetings.goodnight Editorial 1078 | good good night smalltalk.greetings.goodnight Editorial 1079 | good night for now smalltalk.greetings.goodnight Editorial 1080 | goodnight smalltalk.greetings.goodnight Editorial 1081 | night smalltalk.greetings.goodnight Editorial 1082 | thanks goodnight smalltalk.greetings.goodnight Editorial 1083 | good night see you tomorrow smalltalk.greetings.goodnight Editorial 1084 | alright goodnight smalltalk.greetings.goodnight Editorial 1085 | good tonight smalltalk.greetings.goodnight Editorial 1086 | okay have a good night smalltalk.greetings.goodnight Editorial 1087 | have a good night smalltalk.greetings.goodnight Editorial 1088 | long time no see smalltalk.greetings.hello Editorial 1089 | hello smalltalk.greetings.hello Editorial 1090 | hi smalltalk.greetings.hello Editorial 1091 | howdy smalltalk.greetings.hello Editorial 1092 | hey there smalltalk.greetings.hello Editorial 1093 | hey smalltalk.greetings.hello Editorial 1094 | greetings smalltalk.greetings.hello Editorial 1095 | I greet you smalltalk.greetings.hello Editorial 1096 | hi there smalltalk.greetings.hello Editorial 1097 | hello there smalltalk.greetings.hello Editorial 1098 | lovely day isn't it smalltalk.greetings.hello Editorial 1099 | hello again smalltalk.greetings.hello Editorial 1100 | just going to say hi smalltalk.greetings.hello Editorial 1101 | a good day smalltalk.greetings.hello Editorial 1102 | afternoon smalltalk.greetings.hello Editorial 1103 | hello hi smalltalk.greetings.hello Editorial 1104 | heya smalltalk.greetings.hello Editorial 1105 | how is your morning so far smalltalk.greetings.how_are_you Editorial 1106 | how are you getting on smalltalk.greetings.how_are_you Editorial 1107 | how's your day going smalltalk.greetings.how_are_you Editorial 1108 | how are you smalltalk.greetings.how_are_you Editorial 1109 | is everything all right smalltalk.greetings.how_are_you Editorial 1110 | how are you doing smalltalk.greetings.how_are_you Editorial 1111 | how are the things going smalltalk.greetings.how_are_you Editorial 1112 | are you alright smalltalk.greetings.how_are_you Editorial 1113 | are you okay smalltalk.greetings.how_are_you Editorial 1114 | how are you feeling smalltalk.greetings.how_are_you Editorial 1115 | how are you going smalltalk.greetings.how_are_you Editorial 1116 | is everything okay smalltalk.greetings.how_are_you Editorial 1117 | how are you today smalltalk.greetings.how_are_you Editorial 1118 | how do you do smalltalk.greetings.how_are_you Editorial 1119 | how do you feel smalltalk.greetings.how_are_you Editorial 1120 | how have you been smalltalk.greetings.how_are_you Editorial 1121 | how is it smalltalk.greetings.how_are_you Editorial 1122 | how is it going smalltalk.greetings.how_are_you Editorial 1123 | how is your day smalltalk.greetings.how_are_you Editorial 1124 | how is your day going smalltalk.greetings.how_are_you Editorial 1125 | how is your evening smalltalk.greetings.how_are_you Editorial 1126 | how was your day smalltalk.greetings.how_are_you Editorial 1127 | are you having a good day smalltalk.greetings.how_are_you Editorial 1128 | hope your day is going well smalltalk.greetings.how_are_you Editorial 1129 | hope you re having a pleasant evening smalltalk.greetings.how_are_you Editorial 1130 | how's life smalltalk.greetings.how_are_you Editorial 1131 | I'm fine and you smalltalk.greetings.how_are_you Editorial 1132 | how is your life smalltalk.greetings.how_are_you Editorial 1133 | how has your day been smalltalk.greetings.how_are_you Editorial 1134 | how is your morning going smalltalk.greetings.how_are_you Editorial 1135 | how has your day been going smalltalk.greetings.how_are_you Editorial 1136 | how about you smalltalk.greetings.how_are_you Editorial 1137 | how is your day being smalltalk.greetings.how_are_you Editorial 1138 | how is your day going on smalltalk.greetings.how_are_you Editorial 1139 | how your day is going smalltalk.greetings.how_are_you Editorial 1140 | what was your day like smalltalk.greetings.how_are_you Editorial 1141 | what about your day smalltalk.greetings.how_are_you Editorial 1142 | how's your day smalltalk.greetings.how_are_you Editorial 1143 | how are you doing this morning smalltalk.greetings.how_are_you Editorial 1144 | how is your day going smalltalk.greetings.how_are_you Editorial 1145 | nice to meet you smalltalk.greetings.nice_to_meet_you Editorial 1146 | it was nice meeting you smalltalk.greetings.nice_to_meet_you Editorial 1147 | it was very nice to meet you smalltalk.greetings.nice_to_meet_you Editorial 1148 | good to know each other smalltalk.greetings.nice_to_meet_you Editorial 1149 | glad to meet you smalltalk.greetings.nice_to_meet_you Editorial 1150 | nice meeting you smalltalk.greetings.nice_to_meet_you Editorial 1151 | nice to meet you too smalltalk.greetings.nice_to_meet_you Editorial 1152 | pleased to meet you smalltalk.greetings.nice_to_meet_you Editorial 1153 | pleasure to meet you smalltalk.greetings.nice_to_meet_you Editorial 1154 | pleasure to meet you too smalltalk.greetings.nice_to_meet_you Editorial 1155 | it's nice to see you smalltalk.greetings.nice_to_see_you Editorial 1156 | lovely to see you smalltalk.greetings.nice_to_see_you Editorial 1157 | I'm glad to see you smalltalk.greetings.nice_to_see_you Editorial 1158 | great to see you smalltalk.greetings.nice_to_see_you Editorial 1159 | it's good to see you smalltalk.greetings.nice_to_see_you Editorial 1160 | glad to see you smalltalk.greetings.nice_to_see_you Editorial 1161 | how good it is to see you smalltalk.greetings.nice_to_see_you Editorial 1162 | always a pleasure to see you smalltalk.greetings.nice_to_see_you Editorial 1163 | nice to see you smalltalk.greetings.nice_to_see_you Editorial 1164 | good to see you smalltalk.greetings.nice_to_see_you Editorial 1165 | great to see you again smalltalk.greetings.nice_to_see_you Editorial 1166 | great to see you too smalltalk.greetings.nice_to_see_you Editorial 1167 | I am glad to see you again smalltalk.greetings.nice_to_see_you Editorial 1168 | nice to see you again smalltalk.greetings.nice_to_see_you Editorial 1169 | glad to see you too smalltalk.greetings.nice_to_see_you Editorial 1170 | good to see you again smalltalk.greetings.nice_to_see_you Editorial 1171 | it's good to see you too smalltalk.greetings.nice_to_see_you Editorial 1172 | it's been so nice to talk to you smalltalk.greetings.nice_to_talk_to_you Editorial 1173 | it's been a pleasure talking to you smalltalk.greetings.nice_to_talk_to_you Editorial 1174 | nice to talk to you smalltalk.greetings.nice_to_talk_to_you Editorial 1175 | it's nice to talk to you smalltalk.greetings.nice_to_talk_to_you Editorial 1176 | nice talking to you smalltalk.greetings.nice_to_talk_to_you Editorial 1177 | it is nice talking to you smalltalk.greetings.nice_to_talk_to_you Editorial 1178 | how nice it is to talk to you smalltalk.greetings.nice_to_talk_to_you Editorial 1179 | what is on your mind smalltalk.greetings.whatsup Editorial 1180 | what's happened smalltalk.greetings.whatsup Editorial 1181 | what is up smalltalk.greetings.whatsup Editorial 1182 | what's up smalltalk.greetings.whatsup Editorial 1183 | whazzup smalltalk.greetings.whatsup Editorial 1184 | good what's up smalltalk.greetings.whatsup Editorial 1185 | I said what's up smalltalk.greetings.whatsup Editorial 1186 | then what's up smalltalk.greetings.whatsup Editorial 1187 | what's shaking smalltalk.greetings.whatsup Editorial 1188 | wassup smalltalk.greetings.whatsup Editorial 1189 | what is going on smalltalk.greetings.whatsup Editorial 1190 | what is happening smalltalk.greetings.whatsup Editorial 1191 | what's cracking smalltalk.greetings.whatsup Editorial 1192 | what's cooking smalltalk.greetings.whatsup Editorial 1193 | hey what's up smalltalk.greetings.whatsup Editorial 1194 | what's up today smalltalk.greetings.whatsup Editorial 1195 | I'm being mad smalltalk.user.angry Editorial 1196 | I'm enraged smalltalk.user.angry Editorial 1197 | I'm angry smalltalk.user.angry Editorial 1198 | I'm furious smalltalk.user.angry Editorial 1199 | I am angry with you smalltalk.user.angry Editorial 1200 | I am mad smalltalk.user.angry Editorial 1201 | I am mad at you smalltalk.user.angry Editorial 1202 | I am back smalltalk.user.back Editorial 1203 | I'm here again smalltalk.user.back Editorial 1204 | here I am again smalltalk.user.back Editorial 1205 | I got back smalltalk.user.back Editorial 1206 | I came back smalltalk.user.back Editorial 1207 | I have returned smalltalk.user.back Editorial 1208 | that was boring smalltalk.user.bored Editorial 1209 | I'm bored smalltalk.user.bored Editorial 1210 | bored smalltalk.user.bored Editorial 1211 | boring smalltalk.user.bored Editorial 1212 | I am getting bored smalltalk.user.bored Editorial 1213 | this is boring smalltalk.user.bored Editorial 1214 | very boring smalltalk.user.bored Editorial 1215 | it bores me smalltalk.user.bored Editorial 1216 | I'm overloaded smalltalk.user.busy Editorial 1217 | I have no time smalltalk.user.busy Editorial 1218 | I'm busy smalltalk.user.busy Editorial 1219 | I'm swamped smalltalk.user.busy Editorial 1220 | I got things to do smalltalk.user.busy Editorial 1221 | how busy I am smalltalk.user.busy Editorial 1222 | I got work to do smalltalk.user.busy Editorial 1223 | I'm working smalltalk.user.busy Editorial 1224 | I don't have time for this smalltalk.user.busy Editorial 1225 | I'm insomnious smalltalk.user.can_not_sleep Editorial 1226 | I'm sleepless smalltalk.user.can_not_sleep Editorial 1227 | I can't get any sleep smalltalk.user.can_not_sleep Editorial 1228 | I can't sleep smalltalk.user.can_not_sleep Editorial 1229 | I can't fall asleep smalltalk.user.can_not_sleep Editorial 1230 | I can't get to sleep smalltalk.user.can_not_sleep Editorial 1231 | I can't get no sleep smalltalk.user.can_not_sleep Editorial 1232 | I'm insomniac smalltalk.user.can_not_sleep Editorial 1233 | bad time for talking smalltalk.user.does_not_want_to_talk Editorial 1234 | I don't want to talk smalltalk.user.does_not_want_to_talk Editorial 1235 | let's not talk smalltalk.user.does_not_want_to_talk Editorial 1236 | I'm not talking to you anymore smalltalk.user.does_not_want_to_talk Editorial 1237 | I don't want to talk to you smalltalk.user.does_not_want_to_talk Editorial 1238 | let's stop talking for a minute smalltalk.user.does_not_want_to_talk Editorial 1239 | I'm not in the mood for chatting smalltalk.user.does_not_want_to_talk Editorial 1240 | I am excited smalltalk.user.excited Editorial 1241 | I'm really excited smalltalk.user.excited Editorial 1242 | how excited I am smalltalk.user.excited Editorial 1243 | I'm thrilled smalltalk.user.excited Editorial 1244 | I'm excited about working with you smalltalk.user.excited Editorial 1245 | I'm excited to start our friendship smalltalk.user.excited Editorial 1246 | let's go to bed smalltalk.user.going_to_bed Editorial 1247 | I'd like to go to bed smalltalk.user.going_to_bed Editorial 1248 | is it time for bed yet smalltalk.user.going_to_bed Editorial 1249 | it's time to go to bed smalltalk.user.going_to_bed Editorial 1250 | time for us to go to bed smalltalk.user.going_to_bed Editorial 1251 | I'm going to bed smalltalk.user.going_to_bed Editorial 1252 | I'm a little tired and I want to go to bed smalltalk.user.going_to_bed Editorial 1253 | it's bed time smalltalk.user.going_to_bed Editorial 1254 | going to bed now smalltalk.user.going_to_bed Editorial 1255 | I am good smalltalk.user.good Editorial 1256 | I'm doing just great smalltalk.user.good Editorial 1257 | I'm doing fine smalltalk.user.good Editorial 1258 | I'm good smalltalk.user.good Editorial 1259 | I'm doing good smalltalk.user.good Editorial 1260 | I'm great thanks smalltalk.user.good Editorial 1261 | I am happy smalltalk.user.happy Editorial 1262 | I'm happy to see you smalltalk.user.happy Editorial 1263 | happy smalltalk.user.happy Editorial 1264 | if you're happy then I'm happy smalltalk.user.happy Editorial 1265 | I'm happy for you smalltalk.user.happy Editorial 1266 | I'm happy to help smalltalk.user.happy Editorial 1267 | I'm happy to see you smalltalk.user.happy Editorial 1268 | it is my birthday smalltalk.user.has_birthday Editorial 1269 | I'm celebrating my birthday today smalltalk.user.has_birthday Editorial 1270 | today is my birthday smalltalk.user.has_birthday Editorial 1271 | it's my birthday today smalltalk.user.has_birthday Editorial 1272 | I was born today smalltalk.user.has_birthday Editorial 1273 | it's my b-day smalltalk.user.has_birthday Editorial 1274 | I am here smalltalk.user.here Editorial 1275 | here I am smalltalk.user.here Editorial 1276 | I'm right here smalltalk.user.here Editorial 1277 | I'm already here smalltalk.user.here Editorial 1278 | can you tell if I'm here or not smalltalk.user.here Editorial 1279 | I am joking smalltalk.user.joking Editorial 1280 | I'm kidding smalltalk.user.joking Editorial 1281 | I'm just being funny smalltalk.user.joking Editorial 1282 | it was a joke smalltalk.user.joking Editorial 1283 | I was just joking smalltalk.user.joking Editorial 1284 | it's a joke smalltalk.user.joking Editorial 1285 | joking smalltalk.user.joking Editorial 1286 | just kidding smalltalk.user.joking Editorial 1287 | kidding smalltalk.user.joking Editorial 1288 | I'm just playing with you smalltalk.user.joking Editorial 1289 | I like you the way you are smalltalk.user.likes_agent Editorial 1290 | I like you smalltalk.user.likes_agent Editorial 1291 | I like you a lot smalltalk.user.likes_agent Editorial 1292 | I think I like you smalltalk.user.likes_agent Editorial 1293 | I liked you smalltalk.user.likes_agent Editorial 1294 | like you a lot smalltalk.user.likes_agent Editorial 1295 | you are special smalltalk.user.likes_agent Editorial 1296 | I like you too smalltalk.user.likes_agent Editorial 1297 | I really like you smalltalk.user.likes_agent Editorial 1298 | but I like you smalltalk.user.likes_agent Editorial 1299 | I like u smalltalk.user.likes_agent Editorial 1300 | just like you smalltalk.user.likes_agent Editorial 1301 | I like you very much smalltalk.user.likes_agent Editorial 1302 | I like you so much smalltalk.user.likes_agent Editorial 1303 | yeah I like you smalltalk.user.likes_agent Editorial 1304 | you're special smalltalk.user.likes_agent Editorial 1305 | yes I like you smalltalk.user.likes_agent Editorial 1306 | okay I like you smalltalk.user.likes_agent Editorial 1307 | you are special to me smalltalk.user.likes_agent Editorial 1308 | you are very special smalltalk.user.likes_agent Editorial 1309 | you are so sweet smalltalk.user.likes_agent Editorial 1310 | you know I like you smalltalk.user.likes_agent Editorial 1311 | that's why I like you smalltalk.user.likes_agent Editorial 1312 | I like you baby smalltalk.user.likes_agent Editorial 1313 | you are very special to me smalltalk.user.likes_agent Editorial 1314 | I just like you smalltalk.user.likes_agent Editorial 1315 | hey I like you smalltalk.user.likes_agent Editorial 1316 | thank you I like you too smalltalk.user.likes_agent Editorial 1317 | I do like you smalltalk.user.likes_agent Editorial 1318 | you are special for me smalltalk.user.likes_agent Editorial 1319 | no I like you the way you are smalltalk.user.likes_agent Editorial 1320 | I like you already smalltalk.user.likes_agent Editorial 1321 | well you are special smalltalk.user.likes_agent Editorial 1322 | but I really like you smalltalk.user.likes_agent Editorial 1323 | I like you more smalltalk.user.likes_agent Editorial 1324 | that's what I like about you smalltalk.user.likes_agent Editorial 1325 | you are so special smalltalk.user.likes_agent Editorial 1326 | hi I like you smalltalk.user.likes_agent Editorial 1327 | I really really like you smalltalk.user.likes_agent Editorial 1328 | you're very special smalltalk.user.likes_agent Editorial 1329 | I like you as a friend smalltalk.user.likes_agent Editorial 1330 | that's because you are special smalltalk.user.likes_agent Editorial 1331 | I said I like you smalltalk.user.likes_agent Editorial 1332 | you're so special smalltalk.user.likes_agent Editorial 1333 | good I like you smalltalk.user.likes_agent Editorial 1334 | yes you are special smalltalk.user.likes_agent Editorial 1335 | I like your smile smalltalk.user.likes_agent Editorial 1336 | I like you as you are smalltalk.user.likes_agent Editorial 1337 | I'm starting to like you smalltalk.user.likes_agent Editorial 1338 | you're awesome I like you smalltalk.user.likes_agent Editorial 1339 | I also like you smalltalk.user.likes_agent Editorial 1340 | but I like u smalltalk.user.likes_agent Editorial 1341 | of course I like you smalltalk.user.likes_agent Editorial 1342 | I like you too you're one of my favorite people to chat with smalltalk.user.likes_agent Editorial 1343 | but I like you so much smalltalk.user.likes_agent Editorial 1344 | really like you smalltalk.user.likes_agent Editorial 1345 | you're funny I like you smalltalk.user.likes_agent Editorial 1346 | I kinda like you smalltalk.user.likes_agent Editorial 1347 | you're so special to me smalltalk.user.likes_agent Editorial 1348 | you're very special to me smalltalk.user.likes_agent Editorial 1349 | I like that about you smalltalk.user.likes_agent Editorial 1350 | but I like you just the way you are smalltalk.user.likes_agent Editorial 1351 | okay I like you too smalltalk.user.likes_agent Editorial 1352 | I like you you're cool smalltalk.user.likes_agent Editorial 1353 | I like you very smalltalk.user.likes_agent Editorial 1354 | I like you you're nice smalltalk.user.likes_agent Editorial 1355 | sorry I like you smalltalk.user.likes_agent Editorial 1356 | thanks I like you too smalltalk.user.likes_agent Editorial 1357 | you are really special smalltalk.user.likes_agent Editorial 1358 | you are so special to me smalltalk.user.likes_agent Editorial 1359 | cuz I like you smalltalk.user.likes_agent Editorial 1360 | I like you now smalltalk.user.likes_agent Editorial 1361 | I like you so smalltalk.user.likes_agent Editorial 1362 | I like you too much smalltalk.user.likes_agent Editorial 1363 | I really do like you smalltalk.user.likes_agent Editorial 1364 | I really really really really like you smalltalk.user.likes_agent Editorial 1365 | I like you just the way you are smalltalk.user.likes_agent Editorial 1366 | I am lonely smalltalk.user.lonely Editorial 1367 | I'm very lonely smalltalk.user.lonely Editorial 1368 | I'm so lonely smalltalk.user.lonely Editorial 1369 | I'm really lonely smalltalk.user.lonely Editorial 1370 | I am feeling lonely smalltalk.user.lonely Editorial 1371 | I feel lonely smalltalk.user.lonely Editorial 1372 | what do I look like smalltalk.user.looks_like Editorial 1373 | how do I look smalltalk.user.looks_like Editorial 1374 | do I look good smalltalk.user.looks_like Editorial 1375 | do you know what I look like smalltalk.user.looks_like Editorial 1376 | can you see what I look like smalltalk.user.looks_like Editorial 1377 | what do you think I look like smalltalk.user.looks_like Editorial 1378 | I love you smalltalk.user.loves_agent Editorial 1379 | love you smalltalk.user.loves_agent Editorial 1380 | I adore you smalltalk.user.loves_agent Editorial 1381 | I am in love with you smalltalk.user.loves_agent Editorial 1382 | I love you so much smalltalk.user.loves_agent Editorial 1383 | I love you too smalltalk.user.loves_agent Editorial 1384 | I think I love you smalltalk.user.loves_agent Editorial 1385 | loving you smalltalk.user.loves_agent Editorial 1386 | you know I love you smalltalk.user.loves_agent Editorial 1387 | I miss you smalltalk.user.misses_agent Editorial 1388 | missing you smalltalk.user.misses_agent Editorial 1389 | miss you smalltalk.user.misses_agent Editorial 1390 | already miss you smalltalk.user.misses_agent Editorial 1391 | I miss you much smalltalk.user.misses_agent Editorial 1392 | I missed you smalltalk.user.misses_agent Editorial 1393 | I've missed you smalltalk.user.misses_agent Editorial 1394 | what should I do about it smalltalk.user.needs_advice Editorial 1395 | any suggestions smalltalk.user.needs_advice Editorial 1396 | what do you recommend smalltalk.user.needs_advice Editorial 1397 | give me a wise advice smalltalk.user.needs_advice Editorial 1398 | I need advice smalltalk.user.needs_advice Editorial 1399 | any advice smalltalk.user.needs_advice Editorial 1400 | do you have any advice for me smalltalk.user.needs_advice Editorial 1401 | advise me smalltalk.user.needs_advice Editorial 1402 | what should I do smalltalk.user.needs_advice Editorial 1403 | can I ask for your advice smalltalk.user.needs_advice Editorial 1404 | can you advise me smalltalk.user.needs_advice Editorial 1405 | guide me smalltalk.user.needs_advice Editorial 1406 | can you give me advice smalltalk.user.needs_advice Editorial 1407 | can you offer any advice smalltalk.user.needs_advice Editorial 1408 | give me some advice about smalltalk.user.needs_advice Editorial 1409 | give me some good advice smalltalk.user.needs_advice Editorial 1410 | help me with advice smalltalk.user.needs_advice Editorial 1411 | I could use some advice smalltalk.user.needs_advice Editorial 1412 | I need an advice from you smalltalk.user.needs_advice Editorial 1413 | I seek your advice smalltalk.user.needs_advice Editorial 1414 | what can you recommend smalltalk.user.needs_advice Editorial 1415 | what do you suggest smalltalk.user.needs_advice Editorial 1416 | what is your advice smalltalk.user.needs_advice Editorial 1417 | I am sad smalltalk.user.sad Editorial 1418 | I'm grieving smalltalk.user.sad Editorial 1419 | I am depressed smalltalk.user.sad Editorial 1420 | I am feeling sad smalltalk.user.sad Editorial 1421 | I am upset smalltalk.user.sad Editorial 1422 | I'm unhappy smalltalk.user.sad Editorial 1423 | I'm having a bad day smalltalk.user.sad Editorial 1424 | I want to cry smalltalk.user.sad Editorial 1425 | I'm not happy smalltalk.user.sad Editorial 1426 | I am sleepy smalltalk.user.sleepy Editorial 1427 | I want to sleep smalltalk.user.sleepy Editorial 1428 | I'm falling asleep smalltalk.user.sleepy Editorial 1429 | I'm falling asleep on my feet smalltalk.user.sleepy Editorial 1430 | I'm sleeping smalltalk.user.sleepy Editorial 1431 | test smalltalk.user.testing_agent Editorial 1432 | I am testing you smalltalk.user.testing_agent Editorial 1433 | can I test you smalltalk.user.testing_agent Editorial 1434 | I want to test you smalltalk.user.testing_agent Editorial 1435 | just testing you smalltalk.user.testing_agent Editorial 1436 | let me test you smalltalk.user.testing_agent Editorial 1437 | testing chatbot smalltalk.user.testing_agent Editorial 1438 | testing smalltalk.user.testing_agent Editorial 1439 | I'm drained smalltalk.user.tired Editorial 1440 | I've overworked smalltalk.user.tired Editorial 1441 | I am tired smalltalk.user.tired Editorial 1442 | I'm exhausted smalltalk.user.tired Editorial 1443 | I grow weary smalltalk.user.tired Editorial 1444 | I'm worn out smalltalk.user.tired Editorial 1445 | I'm getting tired smalltalk.user.tired Editorial 1446 | I feel tired smalltalk.user.tired Editorial 1447 | I'm waiting smalltalk.user.waits Editorial 1448 | still waiting smalltalk.user.waits Editorial 1449 | I'll wait smalltalk.user.waits Editorial 1450 | I can't wait anymore smalltalk.user.waits Editorial 1451 | how long do I have to wait smalltalk.user.waits Editorial 1452 | I'd like to see you again smalltalk.user.wants_to_see_agent_again Editorial 1453 | I hope to see you again smalltalk.user.wants_to_see_agent_again Editorial 1454 | would be nice to see you again smalltalk.user.wants_to_see_agent_again Editorial 1455 | that'd be great to see you again smalltalk.user.wants_to_see_agent_again Editorial 1456 | I'd be happy to see you again smalltalk.user.wants_to_see_agent_again Editorial 1457 | I'll miss you smalltalk.user.wants_to_see_agent_again Editorial 1458 | can I see you again smalltalk.user.wants_to_see_agent_again Editorial 1459 | I just want to talk smalltalk.user.wants_to_talk Editorial 1460 | let's discuss something smalltalk.user.wants_to_talk Editorial 1461 | let's have a discussion smalltalk.user.wants_to_talk Editorial 1462 | can I speak smalltalk.user.wants_to_talk Editorial 1463 | can I start speaking smalltalk.user.wants_to_talk Editorial 1464 | can we talk smalltalk.user.wants_to_talk Editorial 1465 | let's talk smalltalk.user.wants_to_talk Editorial 1466 | I want to talk to you smalltalk.user.wants_to_talk Editorial 1467 | I need to talk to you smalltalk.user.wants_to_talk Editorial 1468 | I want to speak with you smalltalk.user.wants_to_talk Editorial 1469 | can we chat smalltalk.user.wants_to_talk Editorial 1470 | I'll get back to you in a moment smalltalk.user.will_be_back Editorial 1471 | be back in 5 minutes smalltalk.user.will_be_back Editorial 1472 | I'll be back smalltalk.user.will_be_back Editorial 1473 | I promise to come back smalltalk.user.will_be_back Editorial 1474 | I'll be back in a few minutes smalltalk.user.will_be_back Editorial 1475 | --------------------------------------------------------------------------------