Domains
These docs are for version 1.x of Rasa Open Source.
User Guide
- Installation
- Tutorial: Rasa Basics
- Tutorial: Building Assistants
- Command Line Interface
- Architecture
- Messaging and Voice Channels
- Evaluating Models
- Validate Data
- Configuring the HTTP API
- Deploying your Rasa Assistant
- Cloud Storage
NLU
- About
- Using NLU Only
- Training Data Format
- Choosing a Pipeline
- Language Support
- Entity Extraction
- Components
Core
- About
- Stories
- Domains
- Responses
- Actions
- Reminders and External Events
- Policies
- Slots
- Forms
- Retrieval Actions
- Interactive Learning
- Fallback Actions
- Knowledge Base Actions
Conversation Design
API Reference
- Action Server
- HTTP API
- Jupyter Notebooks
- Agent
- Custom NLU Components
- Rasa SDK
- Events
- Tracker
- Tracker Stores
- Event Brokers
- Lock Stores
- Training Data Importers
- Featurization of Conversations
- TensorFlow Configuration
- Migration Guide
- Rasa Open Source Change Log
Migrate from (beta)
Reference
Versions
viewing: 1.8.2
Domains
The Domain defines the universe in which your assistant operates. It specifies the intents, entities, slots, and actions your bot should know about. Optionally, it can also include responses for the things your bot can say.
An example of a Domain
As an example, the domain created by rasa init has the following yaml definition:
intents:
- greet
- goodbye
- affirm
- deny
- mood_great
- mood_unhappy
- bot_challenge
responses:
utter_greet:
- text: "Hey! How are you?"
utter_cheer_up:
- text: "Here is something to cheer you up:"
image: "https://i.imgur.com/nGF1K8f.jpg"
utter_did_that_help:
- text: "Did that help you?"
utter_happy:
- text: "Great, carry on!"
utter_goodbye:
- text: "Bye"
utter_iamabot:
- text: "I am a bot, powered by Rasa."
session_config:
session_expiration_time: 60
carry_over_slots_to_new_session: true
What does this mean?
Your NLU model will define the intents and entities that you need to include in the domain. The entities section lists all entities extracted by any entity extractor in your NLU pipeline.
Example of Entities
For example:
entities:
- PERSON # entity extracted by SpacyEntityExtractor
- time # entity extracted by DucklingHTTPExtractor
- membership_type # custom entity extracted by CRFEntityExtractor
- priority # custom entity extracted by CRFEntityExtractor
Slots
Slots hold information you want to keep track of during a conversation.
A categorical slot called risk_level would be defined like this:
slots:
risk_level:
type: categorical
values:
- low
- medium
- high
Actions are the things your bot can actually do. For example, an action could respond to a user, make an external API call, query a database, or just about anything!
Custom Actions and Slots
To reference slots in your domain, you need to reference them by their module path. To reference custom actions, use their name. For example, if you have a module called my_actions containing a class MyAwesomeAction, and module my_slots containing MyAwesomeSlot, you would add these lines to the domain file:
actions:
- my_custom_action
slots:
- my_slots.MyAwesomeSlot
Responses
Responses are messages the bot will send back to the user. There are two ways to use these responses:
- If the name of the response starts with
utter_, the response can directly be used as an action. You would add the response to the domain:
responses:
utter_greet:
- text: "Hey! How are you?"
- You can use the responses to generate response messages from your custom actions using the dispatcher:
dispatcher.utter_message(template="utter_greet"). This allows you to separate the logic of generating the messages from the actual copy. In your custom action code, you can send a message based on the response like this:
from rasa_sdk.actions import Action
class ActionGreet(Action):
def name(self):
return 'action_greet'
def run(self, dispatcher, tracker, domain):
dispatcher.utter_message(template="utter_greet")
return []
Images and Buttons
Responses defined in a domain’s yaml file can contain images and buttons as well:
responses:
utter_greet:
- text: "Hey! How are you?"
buttons:
- title: "great"
payload: "great"
- title: "super sad"
payload: "super sad"
utter_cheer_up:
- text: "Here is something to cheer you up:"
image: "https://i.imgur.com/nGF1K8f.jpg"
Custom Output Payloads
You can also send any arbitrary output to the output channel using the custom: key. Note that since the domain is in yaml format, the json payload should first be converted to yaml format.
Channel-Specific Responses
For each response, you can have multiple response templates (see Variations).
If you have certain response templates that you would like sent only to specific channels, you can specify this with the channel: key.
Variables
You can also use variables in your responses to insert information collected during the dialogue. You can either do that in your custom python code or by using the automatic slot filling mechanism.
Variations
If you want to randomly vary the response sent to the user, you can list multiple response templates and Rasa will randomly pick one of them.
Ignoring entities for certain intents
If you want all entities to be ignored for certain intents, you can add the use_entities: [] parameter to the intent in your domain file.
Session configuration
A conversation session represents the dialogue between the assistant and the user. Conversation sessions can begin in three ways:
- the user begins the conversation with the assistant,
- the user sends their first message after a configurable period of inactivity, or
- a manual session start is triggered with the
/session_startintent message.
You can define the period of inactivity after which a new conversation session is triggered in the domain under the session_config key.
👋 I can help you get started with Rasa and answer your technical questions.