Hi, i am trying to inject an intent (infoLink) using the rasa API with the http request shown below. The intent is successfully injected but the entity ‘banco’ is not recognized, since it is still None after the request. Please your kind help to solve the entity recognition to complete the slot filling of the entity ‘banco’. Thank you!
@koaning Hi, thanks for the response. the rasa version is rasa==1.10.14
Currently i am sending the request as follows, which would be the same as in the curl request.
in the future, feel free to post the actual text into the channel instead of the screenshots. That way we can more easily copy/paste the code and help you debug. If you want to share code you can use the markdown syntax to give the code proper highlighting too. You can read more about that syntax here.
That said, it seems like you’re retrieving a slot, not an entity in your code. An entity is something detected in the current utterance while a slot is more like long-term state that is being tracked. An entity is typically turned into a slot using a form or custom action but there’s a subtle difference.
Hi guys, I’m trying to do a similar thing of francisco: I need to set a slot in my bot when I click on a photo of my local webpage. How can I do that?
For example I have 2 photo X and Y in my webpage:
If I ask the bot (it’s yet implemented in webpage) “what is X?” or “what is Y?” the bot works. But I want that if I ask the bot “what is this?” , he has to answer in the right way according with the photo that the user clicked. Can you help me?