Name |
Type |
Description |
Notes |
config |
DomainConfig |
|
[optional] |
intents |
Array<Hash> |
All intent names and properties |
[optional] |
entities |
Array<String> |
All entity names |
[optional] |
slots |
Hash<String, SlotDescription> |
Slot names and configuration |
[optional] |
responses |
Hash<String, TemplateDescription> |
Bot response templates |
[optional] |
actions |
Array<String> |
Available action names |
[optional] |
require 'rasa-http-api'
instance = Rasa::HTTP::Domain.new(
config: null,
intents: null,
entities: ["person","location"],
slots: null,
responses: null,
actions: ["action_greet","action_goodbye","action_listen"]
)