Hi, I have a bot where one of the forms will have the user fill in a blank text box. This can be a string of any length and include any mixture of letters number etc. Hence it makes no sence to fill the slot from an intent. Is it possible to use:
forms:
from_name:
- type: from_text
intent: null
Or should I set it to intent to fallback, however this will fail if the bot predicts an intent and does not go to fallback.
Alternatively (if possible) I would not like to fill a slot at all. Would it be possible to create an action that would use utter_message(text="Some question?"), have the user reply and then use message=tracker.latest_message.get('text') to gather that reply, or something similar.