├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGES ├── CMakeLists.txt ├── CONTRIBUTORS ├── Dockerfile ├── Doxyfile.in ├── LICENSE ├── README.md ├── bindings ├── CMakeLists.txt └── nodejs │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── README.md │ ├── bin │ ├── open-intent-project.js │ └── open-intent.js │ ├── config │ ├── config.js │ └── default.yaml │ ├── docker │ └── entrypoint.sh │ ├── include │ └── intentjs │ │ └── SerializableChatbot.hpp │ ├── index.js │ ├── lib │ ├── chatbot-api │ │ ├── chatbot-factory.js │ │ ├── chatbot-interface.js │ │ ├── chatbot-with-logger.js │ │ ├── chatbot.js │ │ ├── session-manager │ │ │ ├── redis-driver.js │ │ │ └── standalone-driver.js │ │ └── user-defined-actions │ │ │ └── simple-driver.js │ ├── chatbot-client.js │ ├── chatbot.js │ ├── middleware │ │ ├── README.md │ │ ├── doc-publisher.js │ │ ├── index.js │ │ ├── irc.js │ │ ├── loggers │ │ │ ├── elasticsearch.js │ │ │ └── logger.js │ │ ├── platforms.js │ │ ├── platforms │ │ │ └── controllers │ │ │ │ ├── kik.js │ │ │ │ ├── messenger.js │ │ │ │ ├── skype.js │ │ │ │ ├── slack.js │ │ │ │ └── telegram.js │ │ ├── public_html │ │ │ └── viz.js │ │ ├── rest.js │ │ └── templates │ │ │ └── intent-story.html │ └── project │ │ └── project.js │ ├── package.json │ ├── project-skeletons │ └── chatbot │ │ ├── .gitignore │ │ ├── Aptfile │ │ ├── Procfile │ │ ├── app.js │ │ ├── app │ │ ├── chatbot.js │ │ ├── config.js │ │ └── test │ │ │ ├── helpers.js │ │ │ └── test-chatbot.js │ │ ├── config │ │ ├── general.json │ │ ├── kik │ │ │ └── default.json │ │ ├── loggers │ │ │ ├── elasticsearch.json │ │ │ └── selection.json │ │ ├── messenger │ │ │ └── default.json │ │ ├── selection.json │ │ ├── skype │ │ │ └── default.json │ │ ├── slack │ │ │ └── default.json │ │ └── telegram │ │ │ └── default.json │ │ ├── docker │ │ ├── Dockerfile │ │ └── README.md │ │ ├── heroku_setup │ │ ├── package.json │ │ ├── res │ │ ├── dictionary.json │ │ ├── script.txt │ │ └── user_commands.js │ │ └── test-conversations │ │ ├── do-not-understand-item.txt │ │ ├── make-mistake-during-ordering.txt │ │ ├── order-hamburger.txt │ │ ├── order-pizza.txt │ │ └── order-salad.txt │ ├── src │ ├── SerializableChatbot.cpp │ ├── binding.gyp │ └── main.cpp │ ├── test-integration │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── chatbot │ │ ├── Dockerfile │ │ ├── launch.sh │ │ └── test │ │ │ ├── package.json │ │ │ └── test.js │ ├── elasticsearch-logs │ │ ├── Dockerfile │ │ ├── launch.sh │ │ ├── res │ │ │ ├── dictionary.json │ │ │ ├── script.txt │ │ │ └── user_commands.js │ │ └── test │ │ │ ├── package.json │ │ │ └── test.js │ └── tutorial │ │ ├── Dockerfile │ │ ├── launch.sh │ │ ├── res │ │ ├── dictionary.json │ │ ├── script.txt │ │ └── user_commands.js │ │ └── test │ │ ├── package.json │ │ └── test.js │ └── test │ ├── bad-food-bot-model.js │ ├── chatbot-api │ ├── res │ │ ├── bad_interpreter_model.txt │ │ ├── chatbot.json │ │ ├── food_bot │ │ │ ├── bad_script.txt │ │ │ ├── dictionary.json │ │ │ ├── script.txt │ │ │ └── user_commands.js │ │ ├── interpreter_model.txt │ │ └── userCommands.js │ ├── test-chatbot-factory.js │ ├── test-chatbot-interface.js │ ├── test-chatbot.js │ ├── test-simpledriver.js │ ├── test-standalone-session-manager.js │ └── user-commands.js │ ├── food-bot-model.js │ ├── middleware │ ├── test-doc-publisher.expected.html │ ├── test-doc-publisher.js │ ├── test-irc.js │ ├── test-platforms.js │ └── test-rest.js │ ├── project-skeletons │ └── chatbot │ │ └── test-chatbot.js │ ├── project │ └── test-project.js │ ├── res │ └── food_bot │ │ ├── bad_script.txt │ │ ├── dictionary.json │ │ ├── script.txt │ │ └── user_commands.js │ ├── rest-client │ └── test-rest-client.js │ └── test-chatbot.js ├── cmake ├── CodeCoverage.cmake └── Custom.cmake ├── doc └── img │ ├── create_fb_app.png │ ├── create_fb_page.png │ ├── facebook.png │ ├── fb_app.png │ ├── fb_menu.png │ ├── logo.png │ ├── logo_128.png │ ├── ngrok.png │ ├── page_access_token.png │ └── subscribe_webhook.png ├── examples ├── BeerBar │ ├── BeerBar.cpp │ ├── BeerBar.hpp │ ├── CMakeLists.txt │ ├── chatbot.json │ ├── main.cpp │ └── test │ │ ├── BeerBarTest.cpp │ │ └── CMakeLists.txt ├── CMakeLists.txt ├── Domotic │ ├── CMakeLists.txt │ ├── Domotic.cpp │ ├── Domotic.hpp │ ├── intent.json │ ├── main.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── DomoticTest.cpp ├── IntentViz │ ├── CMakeLists.txt │ ├── chatbot.json │ └── main.cpp └── QueriesBar │ ├── CMakeLists.txt │ ├── chatbot.json │ └── main.cpp ├── include └── intent │ ├── OpenIntent.hpp │ ├── chatbot │ ├── Chatbot.hpp │ ├── ChatbotActionModel.hpp │ ├── ChatbotFactory.hpp │ ├── ChatbotFactory.inl.hpp │ ├── ChatbotModel.hpp │ ├── MultiSessionChatbot.hpp │ ├── MultiSessionChatbot.inl.hpp │ └── SingleSessionChatbot.hpp │ ├── intent_service │ ├── DictionaryModel.hpp │ ├── EntitiesMatcher.hpp │ ├── IntentEncoder.hpp │ ├── IntentMatcher.hpp │ ├── IntentModel.hpp │ ├── IntentService.hpp │ ├── IntentServiceModel.hpp │ ├── SentenceTokenizer.hpp │ ├── Term.hpp │ └── TermIndex.hpp │ ├── intent_story_service │ ├── IntentStoryModel.hpp │ ├── IntentStoryModelSerializer.hpp │ ├── IntentStoryService.hpp │ └── IntentStoryServiceModel.hpp │ ├── interpreter │ ├── EdgeParser.hpp │ ├── Interpreter.hpp │ ├── InterpreterException.hpp │ ├── LineTagger.hpp │ ├── ReplyTemplateInterpreter.hpp │ ├── ScenarioIndexer.hpp │ ├── ScenarioTrimmer.hpp │ └── SentenceToIntentTranslator.hpp │ └── utils │ ├── Deserializer.hpp │ ├── Exception.hpp │ ├── Graph.hpp │ ├── Graph.inl.hpp │ ├── Levenshtein.hpp │ ├── Logger.hpp │ ├── RegexMatcher.hpp │ ├── SingleCharacterDelimiterTokenizer.hpp │ ├── Tokenizer.hpp │ └── TrigramHelper.hpp ├── scripts ├── apply_format.sh ├── apply_format_and_license.sh ├── apply_license.sh ├── build_and_test.sh ├── build_and_test_with_docker.sh ├── deploy_npm.sh ├── remove_old.sh ├── run_tests.sh └── test_license.sh ├── src ├── CMakeLists.txt ├── chatbot │ ├── Chatbot.cpp │ ├── ChatbotFactory.cpp │ └── SingleSessionChatbot.cpp ├── intent_service │ ├── DictionaryModel.cpp │ ├── EntitiesMatcher.cpp │ ├── IntentEncoder.cpp │ ├── IntentMatcher.cpp │ ├── IntentModel.cpp │ ├── IntentService.cpp │ ├── SentenceTokenizer.cpp │ ├── Term.cpp │ └── TermIndex.cpp ├── intent_story_service │ ├── IntentStoryModelSerializer.cpp │ └── IntentStoryService.cpp ├── interpreter │ ├── EdgeParser.cpp │ ├── Interpreter.cpp │ ├── LineTagger.cpp │ ├── ReplyTemplateInterpreter.cpp │ ├── ScenarioIndexer.cpp │ ├── ScenarioTrimmer.cpp │ └── SentenceToIntentTranslator.cpp └── utils │ ├── Deserializer.cpp │ ├── Levenshtein.cpp │ ├── Logger.cpp │ ├── RegexMatcher.cpp │ ├── SingleCharacterDelimiterTokenizer.cpp │ ├── Tokenizer.cpp │ └── TrigramHelper.cpp ├── test ├── CMakeLists.txt ├── ChatbotFactoryTest.cpp ├── ChatbotTest.cpp ├── DeserializerTest.cpp ├── EntitiesMatcherTest.cpp ├── GraphTest.cpp ├── IntentMatcherTest.cpp ├── IntentServiceTest.cpp ├── IntentStoryModelSerializer.cpp ├── IntentStoryServiceTest.cpp ├── InterpreterTest.cpp ├── MultiSessionChatbotTest.cpp ├── SingleCharacterDelimiterTokenizerTest.cpp ├── SingleSessionChatbotTest.cpp ├── TermIndexTest.cpp ├── TokenizerTest.cpp ├── TrigramUtilsTest.cpp ├── launcher │ ├── ResourceManager.cpp │ ├── ResourceManager.hpp │ ├── TestContext.cpp │ ├── TestContext.hpp │ └── main.cpp ├── mock │ └── ChatbotMock.hpp ├── res │ ├── chatbot_model.json │ ├── chatbot_model_without_intent_story.json │ ├── intent_dictionary_deserialization_invalid_test.json │ ├── intent_dictionary_deserialization_test.json │ ├── interpreter_model.txt │ ├── interpreter_model_w_errors.txt │ ├── order_beverage_intent.json │ ├── queries_model.json │ └── template_replies.json └── same_successive_intents │ ├── SameSuccessiveIntentsTest.cpp │ └── res │ ├── dictionary.json │ ├── script.txt │ └── user_commands.js └── thirdparty └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- 1 | Changes for 1.0.0: 2 | 3 | * Initial Open Source release of open-intent 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/README.md -------------------------------------------------------------------------------- /bindings/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.2) 2 | 3 | ADD_SUBDIRECTORY(nodejs) -------------------------------------------------------------------------------- /bindings/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/.gitignore -------------------------------------------------------------------------------- /bindings/nodejs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/nodejs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/README.md -------------------------------------------------------------------------------- /bindings/nodejs/bin/open-intent-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/bin/open-intent-project.js -------------------------------------------------------------------------------- /bindings/nodejs/bin/open-intent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/bin/open-intent.js -------------------------------------------------------------------------------- /bindings/nodejs/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/config/config.js -------------------------------------------------------------------------------- /bindings/nodejs/config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/config/default.yaml -------------------------------------------------------------------------------- /bindings/nodejs/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/docker/entrypoint.sh -------------------------------------------------------------------------------- /bindings/nodejs/include/intentjs/SerializableChatbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/include/intentjs/SerializableChatbot.hpp -------------------------------------------------------------------------------- /bindings/nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/index.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/chatbot-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/chatbot-factory.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/chatbot-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/chatbot-interface.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/chatbot-with-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/chatbot-with-logger.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/session-manager/redis-driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/session-manager/redis-driver.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/session-manager/standalone-driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/session-manager/standalone-driver.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-api/user-defined-actions/simple-driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-api/user-defined-actions/simple-driver.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot-client.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/README.md -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/doc-publisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/doc-publisher.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/index.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/irc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/irc.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/loggers/elasticsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/loggers/elasticsearch.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/loggers/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/loggers/logger.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms/controllers/kik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms/controllers/kik.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms/controllers/messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms/controllers/messenger.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms/controllers/skype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms/controllers/skype.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms/controllers/slack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms/controllers/slack.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/platforms/controllers/telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/platforms/controllers/telegram.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/public_html/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/public_html/viz.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/rest.js -------------------------------------------------------------------------------- /bindings/nodejs/lib/middleware/templates/intent-story.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/middleware/templates/intent-story.html -------------------------------------------------------------------------------- /bindings/nodejs/lib/project/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/lib/project/project.js -------------------------------------------------------------------------------- /bindings/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/package.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/.gitignore -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/Aptfile -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/app.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/app/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/app/chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/app/config.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/app/test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/app/test/helpers.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/app/test/test-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/app/test/test-chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/general.json: -------------------------------------------------------------------------------- 1 | { 2 | "port": 5000 3 | } -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/kik/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/config/kik/default.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/loggers/elasticsearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/config/loggers/elasticsearch.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/loggers/selection.json: -------------------------------------------------------------------------------- 1 | { 2 | "elasticsearch": false 3 | } -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/messenger/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/config/messenger/default.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/config/selection.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/skype/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/config/skype/default.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/slack/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "API_TOKEN":"" 3 | } -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/config/telegram/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "API_TOKEN":"" 3 | } -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/docker/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/docker/README.md -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/heroku_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/heroku_setup -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/package.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/res/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/res/dictionary.json -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/res/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/res/script.txt -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/res/user_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/res/user_commands.js -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/test-conversations/do-not-understand-item.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/test-conversations/do-not-understand-item.txt -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/test-conversations/make-mistake-during-ordering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/test-conversations/make-mistake-during-ordering.txt -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/test-conversations/order-hamburger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/test-conversations/order-hamburger.txt -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/test-conversations/order-pizza.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/test-conversations/order-pizza.txt -------------------------------------------------------------------------------- /bindings/nodejs/project-skeletons/chatbot/test-conversations/order-salad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/project-skeletons/chatbot/test-conversations/order-salad.txt -------------------------------------------------------------------------------- /bindings/nodejs/src/SerializableChatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/src/SerializableChatbot.cpp -------------------------------------------------------------------------------- /bindings/nodejs/src/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/src/binding.gyp -------------------------------------------------------------------------------- /bindings/nodejs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/src/main.cpp -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/CMakeLists.txt -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/chatbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/chatbot/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/chatbot/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/chatbot/launch.sh -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/chatbot/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/chatbot/test/package.json -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/chatbot/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/chatbot/test/test.js -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/launch.sh -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/res/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/res/dictionary.json -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/res/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/res/script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/res/user_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/res/user_commands.js -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/test/package.json -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/elasticsearch-logs/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/elasticsearch-logs/test/test.js -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/Dockerfile -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/launch.sh -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/res/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/res/dictionary.json -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/res/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/res/script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/res/user_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/res/user_commands.js -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/test/package.json -------------------------------------------------------------------------------- /bindings/nodejs/test-integration/tutorial/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test-integration/tutorial/test/test.js -------------------------------------------------------------------------------- /bindings/nodejs/test/bad-food-bot-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/bad-food-bot-model.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/bad_interpreter_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/bad_interpreter_model.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/chatbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/chatbot.json -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/food_bot/bad_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/food_bot/bad_script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/food_bot/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/food_bot/dictionary.json -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/food_bot/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/food_bot/script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/food_bot/user_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/food_bot/user_commands.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/interpreter_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/interpreter_model.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/res/userCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/res/userCommands.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/test-chatbot-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/test-chatbot-factory.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/test-chatbot-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/test-chatbot-interface.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/test-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/test-chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/test-simpledriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/test-simpledriver.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/test-standalone-session-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/test-standalone-session-manager.js -------------------------------------------------------------------------------- /bindings/nodejs/test/chatbot-api/user-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/chatbot-api/user-commands.js -------------------------------------------------------------------------------- /bindings/nodejs/test/food-bot-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/food-bot-model.js -------------------------------------------------------------------------------- /bindings/nodejs/test/middleware/test-doc-publisher.expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/middleware/test-doc-publisher.expected.html -------------------------------------------------------------------------------- /bindings/nodejs/test/middleware/test-doc-publisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/middleware/test-doc-publisher.js -------------------------------------------------------------------------------- /bindings/nodejs/test/middleware/test-irc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/middleware/test-irc.js -------------------------------------------------------------------------------- /bindings/nodejs/test/middleware/test-platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/middleware/test-platforms.js -------------------------------------------------------------------------------- /bindings/nodejs/test/middleware/test-rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/middleware/test-rest.js -------------------------------------------------------------------------------- /bindings/nodejs/test/project-skeletons/chatbot/test-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/project-skeletons/chatbot/test-chatbot.js -------------------------------------------------------------------------------- /bindings/nodejs/test/project/test-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/project/test-project.js -------------------------------------------------------------------------------- /bindings/nodejs/test/res/food_bot/bad_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/res/food_bot/bad_script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/res/food_bot/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/res/food_bot/dictionary.json -------------------------------------------------------------------------------- /bindings/nodejs/test/res/food_bot/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/res/food_bot/script.txt -------------------------------------------------------------------------------- /bindings/nodejs/test/res/food_bot/user_commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/res/food_bot/user_commands.js -------------------------------------------------------------------------------- /bindings/nodejs/test/rest-client/test-rest-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/rest-client/test-rest-client.js -------------------------------------------------------------------------------- /bindings/nodejs/test/test-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/bindings/nodejs/test/test-chatbot.js -------------------------------------------------------------------------------- /cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/Custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/cmake/Custom.cmake -------------------------------------------------------------------------------- /doc/img/create_fb_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/create_fb_app.png -------------------------------------------------------------------------------- /doc/img/create_fb_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/create_fb_page.png -------------------------------------------------------------------------------- /doc/img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/facebook.png -------------------------------------------------------------------------------- /doc/img/fb_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/fb_app.png -------------------------------------------------------------------------------- /doc/img/fb_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/fb_menu.png -------------------------------------------------------------------------------- /doc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/logo.png -------------------------------------------------------------------------------- /doc/img/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/logo_128.png -------------------------------------------------------------------------------- /doc/img/ngrok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/ngrok.png -------------------------------------------------------------------------------- /doc/img/page_access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/page_access_token.png -------------------------------------------------------------------------------- /doc/img/subscribe_webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/doc/img/subscribe_webhook.png -------------------------------------------------------------------------------- /examples/BeerBar/BeerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/BeerBar.cpp -------------------------------------------------------------------------------- /examples/BeerBar/BeerBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/BeerBar.hpp -------------------------------------------------------------------------------- /examples/BeerBar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/CMakeLists.txt -------------------------------------------------------------------------------- /examples/BeerBar/chatbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/chatbot.json -------------------------------------------------------------------------------- /examples/BeerBar/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/main.cpp -------------------------------------------------------------------------------- /examples/BeerBar/test/BeerBarTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/test/BeerBarTest.cpp -------------------------------------------------------------------------------- /examples/BeerBar/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/BeerBar/test/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Domotic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Domotic/Domotic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/Domotic.cpp -------------------------------------------------------------------------------- /examples/Domotic/Domotic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/Domotic.hpp -------------------------------------------------------------------------------- /examples/Domotic/intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/intent.json -------------------------------------------------------------------------------- /examples/Domotic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/main.cpp -------------------------------------------------------------------------------- /examples/Domotic/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/test/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Domotic/test/DomoticTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/Domotic/test/DomoticTest.cpp -------------------------------------------------------------------------------- /examples/IntentViz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/IntentViz/CMakeLists.txt -------------------------------------------------------------------------------- /examples/IntentViz/chatbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/IntentViz/chatbot.json -------------------------------------------------------------------------------- /examples/IntentViz/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/IntentViz/main.cpp -------------------------------------------------------------------------------- /examples/QueriesBar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/QueriesBar/CMakeLists.txt -------------------------------------------------------------------------------- /examples/QueriesBar/chatbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/QueriesBar/chatbot.json -------------------------------------------------------------------------------- /examples/QueriesBar/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/examples/QueriesBar/main.cpp -------------------------------------------------------------------------------- /include/intent/OpenIntent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/OpenIntent.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/Chatbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/Chatbot.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/ChatbotActionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/ChatbotActionModel.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/ChatbotFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/ChatbotFactory.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/ChatbotFactory.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/ChatbotFactory.inl.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/ChatbotModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/ChatbotModel.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/MultiSessionChatbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/MultiSessionChatbot.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/MultiSessionChatbot.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/MultiSessionChatbot.inl.hpp -------------------------------------------------------------------------------- /include/intent/chatbot/SingleSessionChatbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/chatbot/SingleSessionChatbot.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/DictionaryModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/DictionaryModel.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/EntitiesMatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/EntitiesMatcher.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/IntentEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/IntentEncoder.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/IntentMatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/IntentMatcher.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/IntentModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/IntentModel.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/IntentService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/IntentService.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/IntentServiceModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/IntentServiceModel.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/SentenceTokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/SentenceTokenizer.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/Term.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/Term.hpp -------------------------------------------------------------------------------- /include/intent/intent_service/TermIndex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_service/TermIndex.hpp -------------------------------------------------------------------------------- /include/intent/intent_story_service/IntentStoryModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_story_service/IntentStoryModel.hpp -------------------------------------------------------------------------------- /include/intent/intent_story_service/IntentStoryModelSerializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_story_service/IntentStoryModelSerializer.hpp -------------------------------------------------------------------------------- /include/intent/intent_story_service/IntentStoryService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_story_service/IntentStoryService.hpp -------------------------------------------------------------------------------- /include/intent/intent_story_service/IntentStoryServiceModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/intent_story_service/IntentStoryServiceModel.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/EdgeParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/EdgeParser.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/Interpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/Interpreter.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/InterpreterException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/InterpreterException.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/LineTagger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/LineTagger.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/ReplyTemplateInterpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/ReplyTemplateInterpreter.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/ScenarioIndexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/ScenarioIndexer.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/ScenarioTrimmer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/ScenarioTrimmer.hpp -------------------------------------------------------------------------------- /include/intent/interpreter/SentenceToIntentTranslator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/interpreter/SentenceToIntentTranslator.hpp -------------------------------------------------------------------------------- /include/intent/utils/Deserializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Deserializer.hpp -------------------------------------------------------------------------------- /include/intent/utils/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Exception.hpp -------------------------------------------------------------------------------- /include/intent/utils/Graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Graph.hpp -------------------------------------------------------------------------------- /include/intent/utils/Graph.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Graph.inl.hpp -------------------------------------------------------------------------------- /include/intent/utils/Levenshtein.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Levenshtein.hpp -------------------------------------------------------------------------------- /include/intent/utils/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Logger.hpp -------------------------------------------------------------------------------- /include/intent/utils/RegexMatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/RegexMatcher.hpp -------------------------------------------------------------------------------- /include/intent/utils/SingleCharacterDelimiterTokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/SingleCharacterDelimiterTokenizer.hpp -------------------------------------------------------------------------------- /include/intent/utils/Tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/Tokenizer.hpp -------------------------------------------------------------------------------- /include/intent/utils/TrigramHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/include/intent/utils/TrigramHelper.hpp -------------------------------------------------------------------------------- /scripts/apply_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/apply_format.sh -------------------------------------------------------------------------------- /scripts/apply_format_and_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/apply_format_and_license.sh -------------------------------------------------------------------------------- /scripts/apply_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/apply_license.sh -------------------------------------------------------------------------------- /scripts/build_and_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/build_and_test.sh -------------------------------------------------------------------------------- /scripts/build_and_test_with_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/build_and_test_with_docker.sh -------------------------------------------------------------------------------- /scripts/deploy_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/deploy_npm.sh -------------------------------------------------------------------------------- /scripts/remove_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/remove_old.sh -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/run_tests.sh -------------------------------------------------------------------------------- /scripts/test_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/scripts/test_license.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/chatbot/Chatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/chatbot/Chatbot.cpp -------------------------------------------------------------------------------- /src/chatbot/ChatbotFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/chatbot/ChatbotFactory.cpp -------------------------------------------------------------------------------- /src/chatbot/SingleSessionChatbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/chatbot/SingleSessionChatbot.cpp -------------------------------------------------------------------------------- /src/intent_service/DictionaryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/DictionaryModel.cpp -------------------------------------------------------------------------------- /src/intent_service/EntitiesMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/EntitiesMatcher.cpp -------------------------------------------------------------------------------- /src/intent_service/IntentEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/IntentEncoder.cpp -------------------------------------------------------------------------------- /src/intent_service/IntentMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/IntentMatcher.cpp -------------------------------------------------------------------------------- /src/intent_service/IntentModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/IntentModel.cpp -------------------------------------------------------------------------------- /src/intent_service/IntentService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/IntentService.cpp -------------------------------------------------------------------------------- /src/intent_service/SentenceTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/SentenceTokenizer.cpp -------------------------------------------------------------------------------- /src/intent_service/Term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/Term.cpp -------------------------------------------------------------------------------- /src/intent_service/TermIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_service/TermIndex.cpp -------------------------------------------------------------------------------- /src/intent_story_service/IntentStoryModelSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_story_service/IntentStoryModelSerializer.cpp -------------------------------------------------------------------------------- /src/intent_story_service/IntentStoryService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/intent_story_service/IntentStoryService.cpp -------------------------------------------------------------------------------- /src/interpreter/EdgeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/EdgeParser.cpp -------------------------------------------------------------------------------- /src/interpreter/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/Interpreter.cpp -------------------------------------------------------------------------------- /src/interpreter/LineTagger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/LineTagger.cpp -------------------------------------------------------------------------------- /src/interpreter/ReplyTemplateInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/ReplyTemplateInterpreter.cpp -------------------------------------------------------------------------------- /src/interpreter/ScenarioIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/ScenarioIndexer.cpp -------------------------------------------------------------------------------- /src/interpreter/ScenarioTrimmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/ScenarioTrimmer.cpp -------------------------------------------------------------------------------- /src/interpreter/SentenceToIntentTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/interpreter/SentenceToIntentTranslator.cpp -------------------------------------------------------------------------------- /src/utils/Deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/Deserializer.cpp -------------------------------------------------------------------------------- /src/utils/Levenshtein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/Levenshtein.cpp -------------------------------------------------------------------------------- /src/utils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/Logger.cpp -------------------------------------------------------------------------------- /src/utils/RegexMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/RegexMatcher.cpp -------------------------------------------------------------------------------- /src/utils/SingleCharacterDelimiterTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/SingleCharacterDelimiterTokenizer.cpp -------------------------------------------------------------------------------- /src/utils/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/Tokenizer.cpp -------------------------------------------------------------------------------- /src/utils/TrigramHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/src/utils/TrigramHelper.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ChatbotFactoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/ChatbotFactoryTest.cpp -------------------------------------------------------------------------------- /test/ChatbotTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/ChatbotTest.cpp -------------------------------------------------------------------------------- /test/DeserializerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/DeserializerTest.cpp -------------------------------------------------------------------------------- /test/EntitiesMatcherTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/EntitiesMatcherTest.cpp -------------------------------------------------------------------------------- /test/GraphTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/GraphTest.cpp -------------------------------------------------------------------------------- /test/IntentMatcherTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/IntentMatcherTest.cpp -------------------------------------------------------------------------------- /test/IntentServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/IntentServiceTest.cpp -------------------------------------------------------------------------------- /test/IntentStoryModelSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/IntentStoryModelSerializer.cpp -------------------------------------------------------------------------------- /test/IntentStoryServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/IntentStoryServiceTest.cpp -------------------------------------------------------------------------------- /test/InterpreterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/InterpreterTest.cpp -------------------------------------------------------------------------------- /test/MultiSessionChatbotTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/MultiSessionChatbotTest.cpp -------------------------------------------------------------------------------- /test/SingleCharacterDelimiterTokenizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/SingleCharacterDelimiterTokenizerTest.cpp -------------------------------------------------------------------------------- /test/SingleSessionChatbotTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/SingleSessionChatbotTest.cpp -------------------------------------------------------------------------------- /test/TermIndexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/TermIndexTest.cpp -------------------------------------------------------------------------------- /test/TokenizerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/TokenizerTest.cpp -------------------------------------------------------------------------------- /test/TrigramUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/TrigramUtilsTest.cpp -------------------------------------------------------------------------------- /test/launcher/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/launcher/ResourceManager.cpp -------------------------------------------------------------------------------- /test/launcher/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/launcher/ResourceManager.hpp -------------------------------------------------------------------------------- /test/launcher/TestContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/launcher/TestContext.cpp -------------------------------------------------------------------------------- /test/launcher/TestContext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/launcher/TestContext.hpp -------------------------------------------------------------------------------- /test/launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/launcher/main.cpp -------------------------------------------------------------------------------- /test/mock/ChatbotMock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/mock/ChatbotMock.hpp -------------------------------------------------------------------------------- /test/res/chatbot_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/chatbot_model.json -------------------------------------------------------------------------------- /test/res/chatbot_model_without_intent_story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/chatbot_model_without_intent_story.json -------------------------------------------------------------------------------- /test/res/intent_dictionary_deserialization_invalid_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/intent_dictionary_deserialization_invalid_test.json -------------------------------------------------------------------------------- /test/res/intent_dictionary_deserialization_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/intent_dictionary_deserialization_test.json -------------------------------------------------------------------------------- /test/res/interpreter_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/interpreter_model.txt -------------------------------------------------------------------------------- /test/res/interpreter_model_w_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/interpreter_model_w_errors.txt -------------------------------------------------------------------------------- /test/res/order_beverage_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/order_beverage_intent.json -------------------------------------------------------------------------------- /test/res/queries_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/queries_model.json -------------------------------------------------------------------------------- /test/res/template_replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/res/template_replies.json -------------------------------------------------------------------------------- /test/same_successive_intents/SameSuccessiveIntentsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/same_successive_intents/SameSuccessiveIntentsTest.cpp -------------------------------------------------------------------------------- /test/same_successive_intents/res/dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/same_successive_intents/res/dictionary.json -------------------------------------------------------------------------------- /test/same_successive_intents/res/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/test/same_successive_intents/res/script.txt -------------------------------------------------------------------------------- /test/same_successive_intents/res/user_commands.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = {} 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-intent-io/open-intent/HEAD/thirdparty/CMakeLists.txt --------------------------------------------------------------------------------