Hello, I am using Rasa 2.6, and I’ve come across a conundrum in a test file : In a form, I ask a user to input their phone number. To extract this number, I use DucklingHTTPExtractor with the dimension “phone-number”. However, I also have the “number” dimension, and while running the test, both number and phone-number entities are detected for one number. The issue being, I haven’t found the right syntax (if there is one) to indicate there are several entities for the same number.
Here is the extract of the test steps that trigger the errors in the test file:
- user: |
5141234567
intent: give_number
- action: business_emergency_assistance_form
So far I’ve tried :
- user: |
[5141234567](phone-number)(number)
- user: |
[5141234567](phone-number)[5141234567](number)
to no avail.
Thanks in advance for any suggestion.
PS: By the way, I had found some solutions for the same issue, but for former versions of rasa which don’t have the same syntax.