Failed to extract slot location with action facility_form.the address is not found

This error occurs when I enter the city name .

nlu.md:

nlu.md (6.5 KB)

stories.md:

stories.md (1.1 KB)

actions:

actions.py (9.0 KB)

config:

config.yml (517 Bytes)

domain:

domain.yml (1.4 KB)

Please help I am not able to figure out the problem

Hey @master98

Your NLU.md doesn’t have any examples of location entity. That’s why the FormAction cannot execute the slot_mapping().

So as a quick example, that’s how the intent:inform can look like for you:

## intent:inform
 - [Berlin](location)
 - [New York](location)
 - [Las Vegas](location)

Also, please note the warnings Rasa prints, some components it’s your config.yml are deprecated.

thanks mr!

1 Like