I’m trying to build a custom UI around Rasa, but am finding there’s not documentation around getting the conversation history for a conversation_id.
Looking at Rasa Open Source Documentation, it seems like you can only get the latest message, and there’s no way to get the history for a particular conversation.
Is the recommended approach to store the conversation history in your own separate database? Or is there something I’m missing?
Hi @fandy. I am not 100% sure what you are looking for, but you can use a custom tracker store to store the conversation history (for example SQL, Redis or Mongo). You can find more info on how you can configure it here.