Details
Details
Assignee
Unassigned
UnassignedReporter
Guerby Duval
Guerby DuvalRasa Open Source Version
3.6.13
Rasa SDK Version
3.6.2
Python version
3.9
Operating System
Windows
Difficulty
Hard
Created January 19, 2024 at 10:25 PM
Updated January 19, 2024 at 10:25 PM
Hi, I have a form that has two
required_slots
. The problem is in theactive_loop
when I insert a value for therequested_slot
rasa is matching the inserted value to an intent and it get out of the form to go to that intent. This is wrong in my case because I just want the users to fill the form and keep following the story path. It should not to try to match an intent when the user is filling a slot.slots: date: type: text mappings: - type: custom
forms: date_from: required_slots: - date - time
The story path
- intent: cirujia - action: utter_cirujano - action: date_from - active_loop: date_from - active_loop: null - action: action_confirmation