Hey, Is it possible to get user responses to be printed in the form of notes? For example, there are buttons such as- [“saree”,“Jeans”,“skirts”]. I want to know which option the user chooses without rasa x. I want to print these in the form of text file .
Yes, there are a few options:
- Start rasa with the
--debug
option and read the values from stdout - Configure an event broker and read the events. You could use the file configuration if you want it written to a file.
- Read the tracker store from whatever db you’ve chosen for the tracker
Greg