Hi @nik202
I am using rasa 3.6.2, i am using slots as mobile_number, to_acc, otp and amount. but the slots are not filling properly.
If i type something , the input is filling to all the slots values.
Slots in domain.yml file
slots:
mobile_number:
type: text
mappings:
- type: from_entity
entity: mobile_number
- type: from_text
influence_conversation: false
otp:
type: text
mappings:
- type: from_entity
entity: otp
- type: from_text
influence_conversation: false
to_acc:
type: text
mappings:
- type: from_entity
entity: to_acc
- type: from_text
influence_conversation: false
amount:
type: text
mappings:
- type: from_entity
entity: amount
- type: from_text
influence_conversation: false

