Licensing
Rasa offers Enterprise licenses for teams building assistants at scale, with advanced features like enterprise-grade security, scalability, and dedicated support. But if you're just getting started, you can get a free Developer Edition License to try it out.
How Licensing Works
Rasa Pro will look for your license in the env var RASA_PRO_LICENSE
, which must
contain the content of the license key file provided by rasa.
You can set the RASA_PRO_LICENSE
env var temporarily in your terminal, but it is recommended
to set it persistently so that you don't have to set it every time you run
Rasa Pro.
- Bash
- Windows Powershell
## Temporary
export RASA_PRO_LICENSE=YOUR_LICENSE_STRING_HERE
## Persistent
echo "export RASA_PRO_LICENSE=YOUR_LICENSE_STRING_HERE" >> ~/.bashrc
## If you're using a different flavor of bash e.g. Zsh, replace .bashrc with your shell's initialization script e.g. ~/.zshrc
## Temporary
$env: RASA_PRO_LICENSE=YOUR_LICENSE_STRING_HERE
## Persistent for the current user
[System.Environment]::SetEnvironmentVariable('RASA_PRO_LICENSE','YOUR_LICENSE_STRING_HERE','USER')
Then you can use the rasa
CLI as usual, for example:
rasa init