Key issues in domain.yml file. pls help me out

Here is the domain.yml (1.4 KB) and actions.py (1.4 KB)

when I trained the model I get error like this YamlValidationException: Failed to validate '/Users/bibekrai/workspace/rasa/domain.yml'. Please make sure the file is correct and all mandatory parameters are specified. Here are the errors found during validation: in /Users/bibekrai/workspace/rasa/domain.yml:76: Key 'name' was not defined. Path: '/forms/user_details_form' in /Users/bibekrai/workspace/rasa/domain.yml:76: Key 'number' was not defined. Path: '/forms/user_details_form'

what is this ?

Try

forms:
  user_details_form:
    required_slots:
      - name
      - number

thanks @stephens . Now I can train my model and I am able to chat with my bot. :grinning: