💬 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
💡 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.
Rasa is an open source machine learning framework to automate text and voice-based conversations. With Rasa, you can build contextual assistants on:
or voice assistants as:
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.
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.
We are very happy to receive and merge your contributions into this repository!
To contribute via pull request, follow these steps:
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.
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>
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
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.
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"
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.
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.
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
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
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
.
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.
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
If you want to check types on the codebase, install mypy
using poetry install
.
To check the types execute
make types
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.
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:
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.
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 maintenance duration and end of life for every release are shown on our website as part of the Product Release and Maintenance Policy.
After a Major release has been completed, please follow these instructions to complete the documentation update.
Releasing a new version is quite simple, as the packages are build and distributed by GitHub Actions.
Release steps:
git checkout -b 1.2.x
git push origin 1.2.x
main
in case of a major, the <major>.<minor>.x
branch for minors and patches)
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.git commit -am "bump rasa-sdk dependency"
but do not push them. They will be automatically picked up by the following step.make release
1.2.x
)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.product
channel) like this oneevent: push
and branch: <version number>
(example on release 2.4 you can see here)product
channel, check also in the product-engineering-alerts
channel if there are any alerts related to the Rasa Open Source release like this onePatch 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:
2.0.4
patch, you will2.0.x
release branch). All patch releases must come from a .x
branch!make release
and follow the.x
branch again and push the tag!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:
Please refer to the Rasa Product Release and Maintenance Policy page.
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.