├── Chapter03 └── cui-ch3-weatherbot-master │ ├── README.md │ ├── weatherman-bot-fbmi │ ├── Procfile │ ├── index.js │ └── package.json │ └── weatherman-bot │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── Procfile │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ ├── WebServer.java │ │ └── weatherman │ │ ├── chatbot │ │ └── Chatbot.java │ │ ├── weather │ │ └── Weather.java │ │ └── web │ │ └── utils │ │ ├── JSONUtil.java │ │ └── ResponseError.java │ └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.sjanarthanam │ │ └── weatherman │ │ ├── pom.properties │ │ └── pom.xml │ ├── WebServer$1.class │ ├── WebServer.class │ └── weatherman │ ├── chatbot │ └── Chatbot.class │ ├── weather │ └── Weather.class │ └── web │ └── utils │ ├── JSONUtil.class │ └── ResponseError.class ├── Chapter04 └── cui-ch4-persona-bot-master │ ├── Procfile │ ├── README.md │ ├── dialogflow │ └── EinsteinBot.zip │ ├── index.js │ └── package.json ├── Chapter05 └── cui-ch5-train-bot-master │ ├── Procfile │ ├── README.md │ ├── bin │ └── sendTrainNotification.js │ ├── index.js │ └── package.json ├── Chapter06 └── cui-ch6-foodie-bot-master │ ├── .env │ ├── Procfile │ ├── README.md │ ├── index.js │ └── package.json ├── Chapter07 └── cui-ch7-news-bot-master │ ├── Procfile │ ├── README.md │ ├── bin │ └── hourlyTweeter │ ├── index.js │ └── package.json ├── Chapter08 └── cui-ch8-tv-schedule-alexa-skill-master │ ├── Procfile │ ├── README.md │ ├── index.js │ └── package.json ├── Chapter09 └── cui-ch9-man-friday-google-assistant-master │ ├── Procfile │ ├── README.md │ ├── dialogflow │ └── MyManFriday.zip │ ├── index.js │ └── package.json ├── LICENSE ├── README.md └── SoftwareHardwareList.pdf /Chapter03/cui-ch3-weatherbot-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch3-weatherbot" 2 | -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot-fbmi/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot-fbmi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot-fbmi/index.js -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot-fbmi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot-fbmi/package.json -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.classpath -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.project -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/Procfile -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/pom.xml -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/WebServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/WebServer.java -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/chatbot/Chatbot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/chatbot/Chatbot.java -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/weather/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/weather/Weather.java -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/web/utils/JSONUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/web/utils/JSONUtil.java -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/web/utils/ResponseError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/src/main/java/weatherman/web/utils/ResponseError.java -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/maven/com.sjanarthanam/weatherman/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/maven/com.sjanarthanam/weatherman/pom.properties -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/maven/com.sjanarthanam/weatherman/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/META-INF/maven/com.sjanarthanam/weatherman/pom.xml -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/WebServer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/WebServer$1.class -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/WebServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/WebServer.class -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/chatbot/Chatbot.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/chatbot/Chatbot.class -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/weather/Weather.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/weather/Weather.class -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/web/utils/JSONUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/web/utils/JSONUtil.class -------------------------------------------------------------------------------- /Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/web/utils/ResponseError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter03/cui-ch3-weatherbot-master/weatherman-bot/target/classes/weatherman/web/utils/ResponseError.class -------------------------------------------------------------------------------- /Chapter04/cui-ch4-persona-bot-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter04/cui-ch4-persona-bot-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch4-persona-bot" 2 | -------------------------------------------------------------------------------- /Chapter04/cui-ch4-persona-bot-master/dialogflow/EinsteinBot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter04/cui-ch4-persona-bot-master/dialogflow/EinsteinBot.zip -------------------------------------------------------------------------------- /Chapter04/cui-ch4-persona-bot-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter04/cui-ch4-persona-bot-master/index.js -------------------------------------------------------------------------------- /Chapter04/cui-ch4-persona-bot-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter04/cui-ch4-persona-bot-master/package.json -------------------------------------------------------------------------------- /Chapter05/cui-ch5-train-bot-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter05/cui-ch5-train-bot-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch5-train-bot" 2 | -------------------------------------------------------------------------------- /Chapter05/cui-ch5-train-bot-master/bin/sendTrainNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter05/cui-ch5-train-bot-master/bin/sendTrainNotification.js -------------------------------------------------------------------------------- /Chapter05/cui-ch5-train-bot-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter05/cui-ch5-train-bot-master/index.js -------------------------------------------------------------------------------- /Chapter05/cui-ch5-train-bot-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter05/cui-ch5-train-bot-master/package.json -------------------------------------------------------------------------------- /Chapter06/cui-ch6-foodie-bot-master/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter06/cui-ch6-foodie-bot-master/.env -------------------------------------------------------------------------------- /Chapter06/cui-ch6-foodie-bot-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter06/cui-ch6-foodie-bot-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch6-foodie-bot" 2 | -------------------------------------------------------------------------------- /Chapter06/cui-ch6-foodie-bot-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter06/cui-ch6-foodie-bot-master/index.js -------------------------------------------------------------------------------- /Chapter06/cui-ch6-foodie-bot-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter06/cui-ch6-foodie-bot-master/package.json -------------------------------------------------------------------------------- /Chapter07/cui-ch7-news-bot-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter07/cui-ch7-news-bot-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch7-news-bot" 2 | -------------------------------------------------------------------------------- /Chapter07/cui-ch7-news-bot-master/bin/hourlyTweeter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter07/cui-ch7-news-bot-master/bin/hourlyTweeter -------------------------------------------------------------------------------- /Chapter07/cui-ch7-news-bot-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter07/cui-ch7-news-bot-master/index.js -------------------------------------------------------------------------------- /Chapter07/cui-ch7-news-bot-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter07/cui-ch7-news-bot-master/package.json -------------------------------------------------------------------------------- /Chapter08/cui-ch8-tv-schedule-alexa-skill-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter08/cui-ch8-tv-schedule-alexa-skill-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch8-tv-schedule-alexa-skill" 2 | -------------------------------------------------------------------------------- /Chapter08/cui-ch8-tv-schedule-alexa-skill-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter08/cui-ch8-tv-schedule-alexa-skill-master/index.js -------------------------------------------------------------------------------- /Chapter08/cui-ch8-tv-schedule-alexa-skill-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter08/cui-ch8-tv-schedule-alexa-skill-master/package.json -------------------------------------------------------------------------------- /Chapter09/cui-ch9-man-friday-google-assistant-master/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js -------------------------------------------------------------------------------- /Chapter09/cui-ch9-man-friday-google-assistant-master/README.md: -------------------------------------------------------------------------------- 1 | "# cui-ch9-man-friday-google-assistant" 2 | -------------------------------------------------------------------------------- /Chapter09/cui-ch9-man-friday-google-assistant-master/dialogflow/MyManFriday.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter09/cui-ch9-man-friday-google-assistant-master/dialogflow/MyManFriday.zip -------------------------------------------------------------------------------- /Chapter09/cui-ch9-man-friday-google-assistant-master/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter09/cui-ch9-man-friday-google-assistant-master/index.js -------------------------------------------------------------------------------- /Chapter09/cui-ch9-man-friday-google-assistant-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/Chapter09/cui-ch9-man-friday-google-assistant-master/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/README.md -------------------------------------------------------------------------------- /SoftwareHardwareList.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Chatbots-and-Conversational-UI-Development/HEAD/SoftwareHardwareList.pdf --------------------------------------------------------------------------------