Version: Latest

Quickstart with GitHub Codespaces

You can start using Rasa Pro in your browser right away, no installation required.

Prerequisites

  • You need a Rasa Pro license key and an API key for OpenAI or other LLM provider.
  • You also need a GitHub account.

Steps

Create a Codespace:

  • Navigate to this repository on GitHub.
  • Click on "Code", then on "Create codespace on main".
screenshot showing how to create a codespace in the github UI

Set Up Environment

Edit the file called .env with the following content:

.env
RASA_PRO_LICENSE='your_rasa_pro_license_key_here'
OPENAI_API_KEY='your_openai_api_key_here'

This assumes you are using OpenAI, but you can use other LLM providers. Load these environment variables from your file by running:

source .env

Then activate your python environment by running:

source .venv/bin/activate

Follow the tutorial

Your codespace is set up so you can now run commands like rasa train and rasa inspect. Now, check out the tutorial to build your first CALM assistant.