• Stars
    star
    18,586
  • Rank 1,413 (Top 0.03 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created about 8 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

πŸ’¬ Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants

Rasa Open Source

Join the chat on Rasa Community Forum PyPI version Supported Python Versions Build Status Coverage Status Documentation Status Documentation Build FOSSA Status PRs Welcome


πŸ’‘ We're migrating issues to Jira πŸ’‘

Starting January 2023, issues for Rasa Open Source are located in this Jira board. You can browse issues without being logged in; if you want to create issues, you'll need to create a Jira account.


An image of Sara, the Rasa mascot bird, holding a flag that reads Open Source with one wing, and a wrench in the other

Rasa is an open source machine learning framework to automate text and voice-based conversations. With Rasa, you can build contextual assistants on:

  • Facebook Messenger
  • Slack
  • Google Hangouts
  • Webex Teams
  • Microsoft Bot Framework
  • Rocket.Chat
  • Mattermost
  • Telegram
  • Twilio
  • Your own custom conversational channels

or voice assistants as:

  • Alexa Skills
  • Google Home Actions

Rasa helps you build contextual assistants capable of having layered conversations with lots of back-and-forth. In order for a human to have a meaningful exchange with a contextual assistant, the assistant needs to be able to use context to build on things that were previously discussed – Rasa enables you to build assistants that can do this in a scalable way.

There's a lot more background information in this blog post.



Where to get help

There is extensive documentation in the Rasa Docs. Make sure to select the correct version so you are looking at the docs for the version you installed.

Please use Rasa Community Forum for quick answers to questions.

README Contents:

How to contribute

We are very happy to receive and merge your contributions into this repository!

To contribute via pull request, follow these steps:

  1. Create an issue describing the feature you want to work on (or have a look at the contributor board)
  2. Write your code, tests and documentation, and format them with black
  3. Create a pull request describing your changes

For more detailed instructions on how to contribute code, check out these code contributor guidelines.

You can find more information about how to contribute to Rasa (in lots of different ways!) on our website..

Your pull request will be reviewed by a maintainer, who will get back to you about any necessary changes or questions. You will also be asked to sign a Contributor License Agreement.

Development Internals

Installing Poetry

Rasa uses Poetry for packaging and dependency management. If you want to build it from source, you have to install Poetry first. Please follow the official guide to see all possible options.

To update an existing poetry version to the version, currently used in rasa, run:

    poetry self update <version>

Managing environments

The official Poetry guide suggests to use pyenv or any other similar tool to easily switch between Python versions. This is how it can be done:

pyenv install 3.10.10
pyenv local 3.10.10  # Activate Python 3.10.10 for the current project

Note: If you have trouble installing a specific version of python on your system it might be worth trying other supported versions.

By default, Poetry will try to use the currently activated Python version to create the virtual environment for the current project automatically. You can also create and activate a virtual environment manually β€” in this case, Poetry should pick it up and use it to install the dependencies. For example:

python -m venv .venv
source .venv/bin/activate

You can make sure that the environment is picked up by executing

poetry env info

Building from source

To install dependencies and rasa itself in editable mode execute

make install

Note for macOS users: under macOS Big Sur we've seen some compiler issues for dependencies. Using export SYSTEM_VERSION_COMPAT=1 before the installation helped.

Installing optional dependencies

In order to install rasa's optional dependencies, you need to run:

make install-full

Note for macOS users: The command make install-full could result in a failure while installing tokenizers (issue described in depth here).

In order to resolve it, you must follow these steps to install a Rust compiler:

brew install rustup
rustup-init

After initialising the Rust compiler, you should restart the console and check its installation:

rustc --version

In case the PATH variable had not been automatically setup, run:

export PATH="$HOME/.cargo/bin:$PATH"

Running and changing the documentation

First of all, install all the required dependencies:

make install install-docs

After the installation has finished, you can run and view the documentation locally using:

make livedocs

It should open a new tab with the local version of the docs in your browser; if not, visit http://localhost:3000 in your browser. You can now change the docs locally and the web page will automatically reload and apply your changes.

Running the Tests

In order to run the tests, make sure that you have the development requirements installed:

make prepare-tests-ubuntu # Only on Ubuntu and Debian based systems
make prepare-tests-macos  # Only on macOS

Then, run the tests:

make test

They can also be run at multiple jobs to save some time:

JOBS=[n] make test

Where [n] is the number of jobs desired. If omitted, [n] will be automatically chosen by pytest.

Running the Integration Tests

In order to run the integration tests, make sure that you have the development requirements installed:

make prepare-tests-ubuntu # Only on Ubuntu and Debian based systems
make prepare-tests-macos  # Only on macOS

Then, you'll need to start services with the following command which uses Docker Compose:

make run-integration-containers

Finally, you can run the integration tests like this:

make test-integration

Resolving merge conflicts

Poetry doesn't include any solution that can help to resolve merge conflicts in the lock file poetry.lock by default. However, there is a great tool called poetry-merge-lock. Here is how you can install it:

pip install poetry-merge-lock

Just execute this command to resolve merge conflicts in poetry.lock automatically:

poetry-merge-lock

Build a Docker image locally

In order to build a Docker image on your local machine execute the following command:

make build-docker

The Docker image is available on your local machine as rasa:localdev.

Code Style

To ensure a standardized code style we use the formatter black. To ensure our type annotations are correct we use the type checker pytype. If your code is not formatted properly or doesn't type check, GitHub will fail to build.

Formatting

If you want to automatically format your code on every commit, you can use pre-commit. Just install it via pip install pre-commit and execute pre-commit install in the root folder. This will add a hook to the repository, which reformats files on every commit.

If you want to set it up manually, install black via poetry install. To reformat files execute

make formatter

Type Checking

If you want to check types on the codebase, install mypy using poetry install. To check the types execute

make types

Deploying documentation updates

We use Docusaurus v2 to build docs for tagged versions and for the main branch. To run Docusaurus, install Node.js 12.x. The static site that gets built is pushed to the documentation branch of this repo.

We host the site on netlify. On main branch builds (see .github/workflows/documentation.yml), we push the built docs to the documentation branch. Netlify automatically re-deploys the docs pages whenever there is a change to that branch.

Releases

Rasa has implemented robust policies governing version naming, as well as release pace for major, minor, and patch releases.

The values for a given version number (MAJOR.MINOR.PATCH) are incremented as follows:

  • MAJOR version for incompatible API changes or other breaking changes.
  • MINOR version for functionality added in a backward compatible manner.
  • PATCH version for backward compatible bug fixes.

The following table describes the version types and their expected release cadence:

Version Type Description Target Cadence
Major For significant changes, or when any backward-incompatible changes are introduced to the API or data model. Every 1 - 2 yrs
Minor For when new backward-compatible functionality is introduced, a minor feature is introduced, or when a set of smaller features is rolled out. +/- Quarterly
Patch For backward-compatible bug fixes that fix incorrect behavior. As needed

While this table represents our target release frequency, we reserve the right to modify it based on changing market conditions and technical requirements.

Maintenance Policy

Our End of Life policy defines how long a given release is considered supported, as well as how long a release is considered to be still in active development or maintenance.

The maintentance duration and end of life for every release are shown on our website as part of the Product Release and Maintenance Policy.

Cutting a Major / Minor release

A week before release day

  1. Make sure the milestone already exists and is scheduled for the correct date.
  2. Take a look at the issues & PRs that are in the milestone: does it look about right for the release highlights we are planning to ship? Does it look like anything is missing? Don't worry about being aware of every PR that should be in, but it's useful to take a moment to evaluate what's assigned to the milestone.
  3. Post a message on the engineering Slack channel, letting the team know you'll be the one cutting the upcoming release, as well as:
    1. Providing the link to the appropriate milestone
    2. Reminding everyone to go over their issues and PRs and please assign them to the milestone
    3. Reminding everyone of the scheduled date for the release

A day before release day

  1. Go over the milestone and evaluate the status of any PR merging that's happening. Follow up with people on their bugs and fixes. If the release introduces new bugs or regressions that can't be fixed in time, we should discuss on Slack about this and take a decision on how to move forward. If the issue is not ready to be merged in time, we remove the issue / PR from the milestone and notify the PR owner and the product manager on Slack about it. The PR / issue owners are responsible for communicating any issues which might be release relevant. Postponing the release should be considered as an edge case scenario.

Release day! πŸš€

  1. At the start of the day, post a small message on slack announcing release day! Communicate you'll be handling the release, and the time you're aiming to start releasing (again, no later than 4pm, as issues may arise and cause delays). This message should be posted early in the morning and before moving forward with any of the steps of the release, in order to give enough time to people to check their PRs and issues. That way they can plan any remaining work. A template of the slack message can be found here. The release time should be communicated transparently so that others can plan potentially necessary steps accordingly. If there are bigger changes this should be communicated.
  2. Make sure the milestone is empty (everything has been either merged or moved to the next milestone)
  3. Once everything in the milestone is taken care of, post a small message on Slack communicating you are about to start the release process (in case anything is missing).
  4. You may now do the release by following the instructions outlined in the Rasa Open Source README !

After a Major release

After a Major release has been completed, please follow these instructions to complete the documentation update.

Steps to release a new version

Releasing a new version is quite simple, as the packages are build and distributed by GitHub Actions.

Release steps:

  1. Make sure all dependencies are up to date (especially Rasa SDK)
    • For Rasa SDK, except in the case of a patch release, that means first creating a new Rasa SDK release (make sure the version numbers between the new Rasa and Rasa SDK releases match)
    • Once the tag with the new Rasa SDK release is pushed and the package appears on pypi, the dependency in the rasa repository can be resolved (see below).
  2. If this is a minor / major release: Make sure all fixes from currently supported minor versions have been merged from their respective release branches (e.g. 3.3.x) back into main.
  3. In case of a minor release, create a new branch that corresponds to the new release, e.g.
     git checkout -b 1.2.x
     git push origin 1.2.x
  4. Switch to the branch you want to cut the release from (main in case of a major, the <major>.<minor>.x branch for minors and patches)
    • Update the rasa-sdk entry in pyproject.toml with the new release version and run poetry update. This creates a new poetry.lock file with all dependencies resolved.
    • Commit the changes with git commit -am "bump rasa-sdk dependency" but do not push them. They will be automatically picked up by the following step.
  5. If this is a major release, update the list of actively maintained versions in the README and in the docs.
  6. Run make release
  7. Create a PR against the release branch (e.g. 1.2.x)
  8. Once your PR is merged, tag a new release (this SHOULD always happen on the release branch), e.g. using
    git checkout 1.2.x
    git pull origin 1.2.x
    git tag 1.2.0 -m "next release"
    git push origin 1.2.0 --tags
    GitHub will build this tag and publish the build artifacts.
  9. After all the steps are completed and if everything goes well then we should see a message automatically posted in the company's Slack (product channel) like this one
  10. If no message appears in the channel then you can do the following checks:
    • Check the workflows in Github Actions and make sure that the merged PR of the current release is completed successfully. To easily find your PR you can use the filters event: push and branch: <version number> (example on release 2.4 you can see here)
    • If the workflow is not completed, then try to re run the workflow in case that solves the problem
    • If the problem persists, check also the log files and try to find the root cause of the issue
    • If you still cannot resolve the error, contact the infrastructure team by providing any helpful information from your investigation
  11. After the message is posted correctly in the product channel, check also in the product-engineering-alerts channel if there are any alerts related to the Rasa Open Source release like this one

Cutting a Patch release

Patch releases are simpler to cut, since they are meant to contain only bugfixes.

The only things you need to do to cut a patch release are:

  1. Notify the engineering team on Slack that you are planning to cut a patch, in case someone has an important fix to add.
  2. Make sure the bugfix(es) are in the release branch you will use (p.e if you are cutting a 2.0.4 patch, you will need your fixes to be on the 2.0.x release branch). All patch releases must come from a .x branch!
  3. Once you're ready to release the Rasa Open Source patch, checkout the branch, run make release and follow the steps + get the PR merged.
  4. Once the PR is in, pull the .x branch again and push the tag!

Additional Release Tasks

Note: This is only required if the released version is the highest version available. For instance, perform the following steps when version > version on main.

In order to check compatibility between the new released Rasa version to the latest version of Rasa X/Enterprise, we perform the following steps:

  1. Following a new Rasa release, an automated pull request is created in Rasa-X-Demo.
  2. Once the above PR is merged, follow instructions here, to release a version.
  3. Update the new version in the Rasa X/Enterprise env file. The Rasa-X-Demo project uses the new updated Rasa version to train and test a model which in turn is used by our CI to run tests in the Rasa X/Enterprise repository, thus validating compatibility between Rasa and Rasa X/Enterprise.

Actively maintained versions

Please refer to the Rasa Product Release and Maintenance Policy page.

License

Licensed under the Apache License, Version 2.0. Copyright 2022 Rasa Technologies GmbH. Copy of the license.

A list of the Licenses of the dependencies of the project can be found at the bottom of the Libraries Summary.

More Repositories

1

rasa_core

Rasa Core is now part of the Rasa repo: An open source machine learning framework to automate text-and voice-based conversations
Python
2,329
star
2

rasa-demo

🐯 Sara - the Rasa Demo Bot: An example of a contextual AI assistant built with the open source Rasa Stack
Python
929
star
3

financial-demo

A demo for a financial services bot
Python
308
star
4

rasalit

Visualizations and helpers to improve and debug machine learning models for Rasa Open Source
Jupyter Notebook
305
star
5

rasa-sdk

SDK for the development of custom actions for Rasa
Python
291
star
6

NLU-training-data

Crowd sourced training data for Rasa NLU models
Python
196
star
7

rasa-nlu-examples

This repository contains examples of custom components for educational purposes.
Python
190
star
8

helpdesk-assistant

Python
185
star
9

rasa-voice-interface

🎀 A simple web interface for building voice assistants with Rasa
Vue
168
star
10

algorithm-whiteboard-resources

this is where we share notebooks/projects used in your youtube channel
Jupyter Notebook
146
star
11

rasa-masterclass

Data and code files for specific Rasa Masterclass episodes
Jupyter Notebook
139
star
12

medicare_locator

πŸ₯Medicare Locator - Open source starter pack for developers to build contextual chatbots and AI assistants in healthcare
Python
138
star
13

tutorial-knowledge-base

Integrating Rasa with a knowledge base to encode domain knowledge and resolve entities
Python
122
star
14

rasa-x-helm

Rasa Enterprise Helm chart for deploying on Kubernetes (K8s) and OpenShift.
Go
77
star
15

paraphraser

Tool to generate paraphrases of sentences in many languages.
Python
74
star
16

rasa-x-demo

Demo app for running a bot with Rasa Enterprise
Python
69
star
17

conversational-ai-workshop-18

Example showing generalisation
Jupyter Notebook
69
star
18

DIET-paper

Source code to reproduce results of our paper "DIET: Lightweight Language Understanding for Dialogue Systems"
Python
60
star
19

rasa-for-beginners

Rasa for Beginners
Python
57
star
20

STAR

Python
55
star
21

rasa_lookup_demo

Improving entity extraction from text using the lookup table feature in rasa_nlu
Python
52
star
22

tutorial-tf-pipeline

Handling multiple intents using Rasa NLU Tensorflow pipeline
51
star
23

rasa-2.x-form-examples

This repository contains a few simple projects with forms.
Python
48
star
24

kb-demo-chatgpt

Python
46
star
25

nlu-hyperopt

Find the best hyperparameters for your Rasa NLU model
Python
46
star
26

rasa-calm-demo

Python
43
star
27

carbon-bot

Python
42
star
28

breakoutbot

A text based adventure game built with Rasa.
Python
41
star
29

TED-paper

Python
39
star
30

rasa-action-server-gha

A GitHub Action that simplifies using Rasa Actions and helps to prepare a Docker image with custom actions.
Dockerfile
39
star
31

retail-demo

Rasa's retail starter pack
Python
38
star
32

pokedex-demo

Rasa Demo for a digital assistant for pokemon
Python
35
star
33

tutorial-rasa-google-assistant

This repository contains the code of the tutorial 'Going beyond β€˜Hey Google’: building a Rasa-powered Google Assistant'
Python
35
star
34

rasa-train-test-gha

A GitHub action to run easily rasa train and rasa test in the CIs.
Python
34
star
35

taipo

Experiments for data quality in Rasa.
Python
34
star
36

rasa-workshop-pydata-berlin

Jupyter Notebook
33
star
37

helm-charts

Helm charts for Rasa products
Smarty
32
star
38

conversational-ai-course-3.x

Containers code for the learning center course.
Python
29
star
39

rasa-workshop

A repository which contains the material for Rasa workshops
Jupyter Notebook
27
star
40

rasa-3.x-form-examples

This repository contains a few simple projects with forms.
Python
27
star
41

insurance-demo

Building a bot to handle general tasks for insurance.
Python
22
star
42

wellness-check-bot

A simple Rasa assistant that uses forms to conduct a daily health survey
Python
21
star
43

tutorial-rasa-alexa

Sample code for a Rasa virtual assistant with an Alexa connector.
Python
19
star
44

workshop-rasax

Python
18
star
45

rasactl

rasactl deploys Rasa X / Enterprise on your local or remote Kubernetes cluster and manages Rasa X / Enterprise deployments.
Go
15
star
46

tod-in-context-learning

Python
15
star
47

rasa-action-examples

A place to host demos for custom actions.
Python
14
star
48

forms_bot

bot which uses forms to do hotel and restaurant booking task
Python
13
star
49

how-to-rasa

Python
13
star
50

live-gdrive-demo

Starter pack for the Rasa Stack
Python
13
star
51

starter-pack-intentless-policy

Python
13
star
52

REI

Rasa Ephermal Installer
Shell
12
star
53

rasa-workshop-pydata-dc

This repository contains the code of the Rasa workshop at PyData DC 2018
Jupyter Notebook
12
star
54

rasa-workshop-pydata-nyc

This repository contains the code of the Rasa workshop at PyData NYC 2018
Jupyter Notebook
12
star
55

awesome-rasa

A list of Rasa resources curated by Rasa and the community.
11
star
56

rasa-custom-spelling-featurizer

This repo contains a tutorial on how to write your own spelling featurizer.
Python
11
star
57

tutorial-migrating-dialogflow-to-rasa

This repository contains the code of the assistant used to demonstrate the migration from DialogFlow to Rasa
Python
11
star
58

spaCy-integration-demo

Python
10
star
59

rasa-3.x-component-examples

A basic Rasa project with Custom Components
Python
10
star
60

livestream-tf-pipeline

Code of the Rasa Twitch livestream on building bots with multi-intents using Rasa NLU TensorFlow pipeline
Python
9
star
61

rasa_stack

A PyPI package which includes Rasa Core and Rasa NLU
Python
8
star
62

rasa-examples

Repository with small Rasa examples.
Python
8
star
63

rasa-custom-fasttext

This repo contains a tutorial on how to make a fasttext featurizer
Python
5
star
64

nlu-and-jupyter

Demonstration of Rasa NLU from Jupyter Lab
Jupyter Notebook
5
star
65

stroopbot

A demonstration of a custom action
Python
4
star
66

rasa-ted-demo

This repo contains a project shows why TED works.
Python
4
star
67

botsociety-py-client

A python client to connect to the Botsociety API
Python
4
star
68

OpenAI_func_calling

4
star
69

workshop-adv-actions

Java
3
star
70

pizza-rule-demo

A demo of rules, stories, actions and forms
Python
3
star
71

benchmark-lookup-ee

This repository contains code to benchmark lookup table entity extraction.
Python
3
star
72

rasa-custom-printer-component

part of a lesson on how to build custom components
Python
3
star
73

multiwoz-paper

Code to analyse MultiWOz and Google Taskmaster-1 dialogue datasets
Python
3
star
74

rei-vm-terraform-example

Example terraform code for creating a VM that is ready for REI installation
Shell
3
star
75

deployment-workshop-bot-2

Python
2
star
76

HandsOn_with_rasa

Python
2
star
77

frontend-coding-test

JavaScript
2
star
78

Hands-on-with-Rasa-2

Python
2
star
79

time-taken-experiment

Some experiments that track how long training might take.
Python
2
star
80

contributors

2
star
81

deploy-tags

TypeScript
2
star
82

deployment-workshop-bot-1

Python
2
star
83

rasa-nlu-eval-compare-gha

A GitHub Action that compares results of multiple Rasa NLU evaluation results and writes the output to an HTML table
Python
2
star
84

calm-guide-code

Python
2
star
85

golastmile.github.io

1
star
86

test-bot

Basic bot used as part of testing Rasa X
Python
1
star
87

rasa-2.0-user-tests-rules

Task for the user tests for rules as part of Rasa Open Source 2.0.
Python
1
star
88

frontend-test

Example Entity annotator (Mock repository)
JavaScript
1
star
89

workshop-rasax-short

Short version of Rasa X workshop
Python
1
star
90

financial-spaces-bot

Python
1
star
91

bart-examples

Repo with example bots on different branches
1
star
92

chatbotsummit-workshop

Python
1
star
93

deployment-workshop-bot-3

Bot for the exam project of the deployment workshop
Python
1
star
94

csm-onboarding

Repo to manage gitpod instances for CSM onboarding
Python
1
star
95

homebrew-rasactl

Homebrew Formula for rasactl
Ruby
1
star
96

webkit-voice-demo

This is a project that shows how to integrate webkit voice with Rasa.
HTML
1
star
97

tourist-agency-calm

Tourist agency example with CALM approach
Python
1
star