Does Rasa have an in-built Timer ?, Where It can measures the user response time, when he/she sends next input message to the bot.
It would be really helpful for my project. Currently I am using system time to measure user response time based on that I am doing back end calculations.
We don’t have an explicit timer. However, we store the timestamp on each of our events. So whenever the user or the bot says something the timestamp is stored on the event itself (see, for example, here). You can get the list of events from the tracker tracker.events in your custom action. Does that help?