Storing Slot Replies in a DB

How can I get Rasa to store slot reply information into MongoDB or preferably Postgre SQL?

You could Create unfeatured-slot Slots and set them in your custom actions for future use or if you want User’s reply use tracker.latest_message.text and insert them using the update command db.collection.update() — MongoDB Manual in your custom actions.

1 Like