Open Text problem in toy form

Hi . I’m trying to make a very simple example, in which the bot asks something, what the user writes goes through a custom action and it returns what the user has put.

The problem is that I’m following the tutorial data, looking at the formbot code, and I can’t do it. I get an error. Let’s note that the idea is to put a utter with open text (no trained)

The code : https://github.com/ideivitcom/test_rasa.git

thank you in advance

Can you share your slot_mappings function?

def slot_mappings(self) -> Dict[Text, Union[Dict, List[Dict]]]: logging.info("------------------------------") return { “name_gs”: self.from_text(intent=“good_and_services”) }

Try self.from_text(intent=None).

It’s works!! Thank you very much.