Currently I’m facing a problem about training the bot to automatically stops a conversation by response a timeout_listen_action, detailed is when a user asks a bot a question, the bot will answer the question in order to gather more information about the user’s question, but then the user does not respond to the bot. What will bot do? As far as I understand, the bot will keep the status of this chat / story forever, right?
Is there any idea to make the bot to automatically take an action to proactively stop the conversation like: ‘I’ve been waiting for your response for 15 minutes, please check and answer soon :)’
Hi @namnguy32157553, you can use reminder actions to schedule actions to be executed in the future. You could trigger one of these actions after every bot utterance to be run 15 minutes later. The reminder can be cancelled with the kill_on_user_message parameter set to True. Please check out the docs on reminders
Hi,
How did you implement that? I had the same idea as @ricwo . But in console mode the bot utterance (utter_ask_continue) isn’t displayed. I’m using rasa_core 12.2
Here is what I did: