Hello,
is there a functionality available in RASA open source, where the bot replies with an utterance if no input is received from the user till a certain time interval( say 4 secs).
Hello,
is there a functionality available in RASA open source, where the bot replies with an utterance if no input is received from the user till a certain time interval( say 4 secs).
There are two ways to solve it,
Use custom action where you use timedelta of datetime module to get time difference and send a response if timedelta threshold is more than 4 sec. You need to trigger it using stories or rules.
If you have your own custom frontend, you can do the same inspite of sending to rasa.
Adding to @athenasaurav’s message, you could also use the ReminderScheduled
event.
adding to @ChrisRahme you can even see this rasa github repo: https://github.com/RasaHQ/rasa/blob/main/examples/reminderbot/actions/actions.py hope this will give you more idea