Hello everyone! I’m new in Rasa. I want to perform smart search with rasa. I have third party service, that provides search football players by their name. Its hard for ai to identify surnames, because they are very different. I’m want see this as result:
user: I want find a footballer (intent: football)
bot: OK, type his surname (action: ask_football_name)
(action:action_listen)
user: Lewandowski (here should be not any intent triggered)
bot: He is Polish (action: custom_search, realized with third party service)
I want to trigger custom_search action in ask_football_name but after user’s input for purpose to use it as search body. How can I perform this? I’ve tried to use slots and forms, but it works bad with something strange for ai as surname. Can someone help me with this?