Run Custom Action After collecting User data

I Want to Create Something or Custom action which will collect user data or input no matter what intent it has and after collecting that data It will run specified action.

Use a form:

In the mapping function use:

    def slot_mappings(self):
    		return { "slot1": self.from_text(intent=None),
    		"slot2": self.from_text(intent=None)
    		}
2 Likes

Thanks For your Reply @Gehova . I’ll try to implement it.