Sharing data between two custom actions - Getting Started with Rasa / Tutorials, Resources & Videos - Rasa Community Forum
👋 Introducing the Rasa Playground
Sharing data between two custom actions
post by seera on Oct 22, 2020
Hello Everyone, I have created two custom actions for two different purpose and making api call, getting response from api in first custom action and stored in variable. I want to use that stored data in second custom actions
post by Gehova on Oct 22, 2020
Add an unfeaturized slot and use the event SlotSet in the first action to save the value. In the second action you can retrieve the value like you do with any other slot.
post by seera on Oct 22, 2020
Thank you @Gehova.