I'm having an error please I need assisstance

Cannot find required key ‘mappings’. Path: ‘/slots/destination’

version: “3.1”

entities:

  • destination
  • items
  • name

intents:

  • greet
  • goodbye
  • affirm
  • deny
  • mood_great
  • mood_unhappy
  • bot_challenge

slots: destination: type: text influence_conversation: true items: type: list name: type: any

responses: utter_greet:

  • text: “Hey {name}! How are you?”
  • text: “Hello {name}!”
  • text: “Hi {name}, How can I help?” 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

Hi @mayowa, welcome to the community.

You have to define slot mappings. For example,

slots:
  slot_name:
    type: any
    mappings:
    - type: from_entity
      entity: entity_name
      role: role_name
      group: group name
      intent: intent_name
      not_intent: excluded_intent

Yes, Thank You. It worked