Hello
This error is showing up relentlessly in when I run rasa shell
:
UserWarning: parsed an entity ‘pizza_type’ which is not defined in the domain. Please make sure all entities are listed in the domain.
Here is my domain.yml version: “3.1”
intents:
- greet
- goodbye
- affirm
- deny
- mood_great
- mood_unhappy
- bot_challenge
- order_pizza
- customize_pizza
entities:
- pizza_type
- size
- toppings
- quantity
actions:
- action_pizza_order
slots: pizza_type: type: text mappings: - type: from_entity entity: pizza_type influence_conversation: true size: type: text mappings: - type: from_entity entity: size influence_conversation: true toppings: type: text mappings: - type: from_entity entity: toppings influence conversation: true quantity: type: text mappings: - type: from_entity entity: quantity influence_convesation: true
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.”
utter_order_received: - text: “Tu orden ha sido recibida.”
session_config: session_expiration_time: 60 carry_over_slots_to_new_session: true
forms: pizza_order_form: required_slots: - pizza_type - size - toppings - quantity
Any ideas?