I am extracting questions from database because It's relatively large dump of data and I wanted to know if there was a way to extract user input from custom actions. I'm using Rasa SDK 2.0.0a1 . Solutions I have tried:
- tracker.latest_message["text"]
- tracker.latest_message.text
- tracker.latest_message.get("text") Any other solutions would be appreciated.
Thank you!