Free Text FormAction

i see in documentation a form action can acept free text but i dont find how anyones knows?

hi @javier0movigoo - the way to do this is if you have a slot (like “first_name”) and you want to read it from free text, write:

def slot_mappings ():
    return {
      "first_name": self.from_text()
    }

Thanks I’ll try