I have the following story:
# stories.yml
- story: Asking for pokemon alive
steps:
- intent: pokemon_alive
entities:
- pokemon
- gym
- action: action_pokemon_alive
and the following test
# test_pokemon_alive.yml
stories:
- story: Asking for pokemon alive
steps:
- user: |
I want to know if pikachu in Vermilion Gym is alive
intent: pokemon_alive
- action: action_pokemon_alive
But when I do run rasa test --fail-on-prediction-errors
it fails with the following log:
WrongPredictionException: NLU model predicted a wrong intent. Failed Story:
version: "2.0"
stories:
- story: Asking for pokemon alive
steps:
- intent: pokemon_alive # predicted: pokemon_alive: I want to know if [pikachu](pokemon) in [Vermilion Gym](gym) is alive
I don’t even know what to google for. Please help :c