How to make forms without using custom actions. Looking for something where I can ask my users to make chat bots the way they want without coding. Just by writing training,story and domain file

No. The name of the form action class can differ from the name defined in the method name. So, every action, e.g. also form actions, needs to implement a method called name. E.g.

   def name(self) -> Text:
      return "<your-action-name>"

The name you define in that method should also appear in the domain file. When predicting the next action, we predict the name of the next action. The name is then used to find the actual action class. As forms are also actions, the same process applies to forms. Does that clarify things?

2 Likes