Albert-91 / BARF-o-bot

Polish BARF specialist chatbot based on Rasa framework.

Home Page:https://www.messenger.com/t/105119554259120

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BARF-o-bot

This repo contains the BARF-o-bot sources based on Rasa framework. BARF-o-bot is a specialist in BARF dogs diet based on raw meat. Currently his abilities are:

  • calculating of products to buy, where input of this calculation is amount of meat,
  • calculating distribution of ingredients to make a portions,
  • getting weather data from Weatherstack API
  • smalltalk.

Chatbot's training data and responses are only in polish language.

If you want to try it then go to Messenger.

Procedures

For all credentials both for production and for development is used special file .env which is not tracked in repo. There are environment variables used in files like docker-compose.yml, credentials.yml and some actions.

Training a model

Models are part of repo and must be stored in models/ directory named model.tar.gz suffix.

Training model command (model will be generated as models/model.tar.gz):

bash train_model.sh

Deployment

Firstly make your node as a swarm manager by command:

docker swarm init

To deploy:

  • BARF-o-bot service
  • Custom action server
  • Duckling service
  • Postgres service
  1. Run script to create directory for Postgres database and pull all necessary images and next override rasa-sk image
    bash prepare_env.sh
  2. Fill in all credentials in .env file with all names of environments variables the same as below WITHOUT quotation marks:
    FACEBOOK_VERIFY=
    FACEBOOK_SECRET=
    FACEBOOK_PAGE_ACCESS_TOKEN=
    POSTGRES_DB=
    POSTGRES_USER=
    POSTGRES_PASSWORD=
    WEATHERSTACK_API_KEY=
  3. Set Messenger Profile features like "Get Started" button, "Ice Breakers", "Greeting" and "Persistent Menu", setting content of these features in config/settings.py and enter command:
    python3 -m scripts.messenger_profile
  4. Run stack named "barfobot":
    docker stack deploy -c docker-compose.yml barfobot

On screen should appear a message that four services was created.

Deploy new version (update a chatbot with trained model via Docker on production)

  1. Stop current stack
    docker stack rm barfobot
  2. Run deploy script
    docker stack deploy -c docker-compose.yml barfobot

About

Polish BARF specialist chatbot based on Rasa framework.

https://www.messenger.com/t/105119554259120

License:MIT License


Languages

Language:Python 98.5%Language:Shell 1.1%Language:Dockerfile 0.4%