Git Product home page Git Product logo

rasa-chatbot-example's Introduction

Chatbot example using Rasa

Basic chatbot example using the OpenSource Rasa Stack (Rasa NLU and Rasa Core). Rasa is written in Python allows developers to expand chatbots and voice assistants beyond answering simple questions by enabling state-of-the-art machine learning models your bots can hold contextual conversations with users.

This repository is based on the official Rasa quicktart guide, while also introduces the use of Ngrok to perform local tests of your chatbot interaction with Facebook messenger.

Installation requirements

  • Python 3.6
  • pip
  • conda
  • Ngrok (Website)
  • Rasa Core and Rasa NLU. Follow official installation instructions. Altenatively you can just run the following on a terminal.
~ $ conda create --name rasa --file environment.yml
~ $ source activate rasa
(rasa) $ pip install -r requirements.txt
~ $

Chatbot setup & deployment

Follow the instructions below to train and test the chatbot. Requires configuration files to setup your bot are:

Rasa Core

  • stories.md: Rasa Core works by learning from example conversations. A story starts with ## followed by a name (optional). Lines that start with * are messages sent by the user. Although you don’t write the actual message, but rather the intent (and the entities) that represent what the user means. Lines that start with - are actions taken by your bot. In general an action can do anything, including calling an API and interacting with the outside world. Find more info about the format here.

  • domain.yml: The domain defines the universe your bot lives in (see Domain format):

Conf Description
actions things your bot can do and say
templates template strings for the things your bot can say
intents things you expect users to say
entities pieces of info you want to extract from messages
slots information to keep track of during a conversation

Rasa NLU

  • nlu.md: define the user messages the bot should be able to handle. It is suggested to define at least five examples of utterances.
  • nlu_config.yml: NLU parameters configuration

1. Train your model

(rasa) $ python -m rasa_core.train -d domain.yml -s stories.md -o models/dialogue --endpoints endpoints.yml --epochs 100 --history 3

Here, you can specify the --nlu-threshold, so the fallback action or the utter_default will be executed if the intent recognition has a confidence below a threshold (0-1).

2. Train your NLU agent

(rasa) $ python -m rasa_nlu.train -c nlu_config.yml --data nlu.md -o models --fixed_model_name nlu --project current --verbose

3. Visualizing stories

Story graph shows an overview of the conversational paths defined in stories.md. To re-generate the graph see documentation.

4. Deploying custom actions endpoint

(rasa) $ python -m rasa_core_sdk.endpoint --actions actions

5. Test your chatbot locally

(rasa) $ python -m rasa_core.run -d models/dialogue -u models/current/nlu

6. Connect to Facebook Messenger (Optional)

  1. First of all, you need to set up a Facebook app and a page. To create the app go to: https://developers.facebook.com/ and click on “Add a new app”.
  2. Go to the Basic Settings of the app and copy the ${APP_SECRET} value.
  3. Go onto the dashboard for the app and under Products, click Add Product and add Messenger.
  4. Under the settings for Messenger, scroll down to Token Generation and click on the link to create a new page for your app.
  5. Copy the generated ${ACCESS_TOKEN}.
  6. On a separate terminal, start a ngrok tunnel with this command:
~ $ ngrok http 5055
  1. Copy the public ${URL} from the ngrok dashboard
  2. Go onto the dashboard for the app and under Products, click Add Product and add Webhooks.
  3. Under Webhooks settings, select Page and then click on Subscribe to this object
  4. Set the Callback URL & ${VERIFY_TOKEN} properties to ${URL}/webhooks/facebook/webhook and my-rasa-bot respectively.
  5. Configure the fb_credentials.yml file with properties ${VERIFY_TOKEN}, ${APP_SECRET} AND ${ACCESS_TOKEN} you collected.
  6. Deploy your chatbot locally by running the following command with the --credentials parameter (don't forget to deploy your custom actions):
(rasa) $ python -m rasa_core.run -d models/dialogue -u models/current/nlu --port 5002 --connector facebook --credentials credentials.yml
  1. Now you can test your chatbot by sending messages to your Page through FB Messenger.

7. Interactive Learning

Interactive Learning is a powerful way to explore what your bot can do, and the easiest way to fix any mistakes it makes, while covering different possible scenarios that were not taken into account when defining your chatbot domain & stories.

Interactive learning can be started using the following command:

(rasa) $ python -m rasa_core.train -d domain.yml -s stories.md -o models/dialogue --endpoints endpoints.yml --online

It will enable an interactive prompt where you can train different intents and scenarios. However, current rasa_core version 0.11.1, just allows you to export the last conversation context per interactive session. An enhancement issue has been opened here, so in a near future you wiil be able to export multiple conversation contexts you used during interactive learning.

Another option is to To train your bot in interactive mode during runtime. To do so, you need to start your bot using the --enable-api parameter as follows;

(rasa) $ python -m rasa_core.run -d models/dialogue -u models/current/nlu --endpoints endpoints.yml --debug --enable_api

It will enable the following resources:

Action Method Resource
hello GET+OPTIONS+HEAD /
list_trackers GET+OPTIONS+HEAD /conversations
execute_action POST+OPTIONS /conversations/[sender_id]/execute
log_message POST+OPTIONS /conversations/[sender_id]/messages
predict POST+OPTIONS /conversations/[sender_id]/predict
respond GET+OPTIONS+POST+HEAD /conversations/[sender_id]/respond
retrieve_tracker GET+OPTIONS+HEAD /conversations/[sender_id]/tracker
replace_events PUT+OPTIONS /conversations/[sender_id]/tracker/events
get_domain GET+OPTIONS+HEAD /domain
continue_training POST+OPTIONS /finetune
load_model POST+OPTIONS /model
tracker_predict POST+OPTIONS /predict
static GET+OPTIONS+HEAD /static/[filename]
status GET+OPTIONS+HEAD /status
version GET+OPTIONS+HEAD /version
custom_webhook.health GET+OPTIONS+HEAD /webhooks/rest/
custom_webhook.receive POST+OPTIONS /webhooks/rest/webhook

License

Licensed under the Apache License, Version 2.0. See LICENSE

rasa-chatbot-example's People

Contributors

santteegt avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.