Hey there!
I was just reading up the new documentation and quickly tried the Prototype an assitant part. I changed a bit the training data and clicked on Train and nothing happened. Looking at the network tab, I saw that the training request returned the following error:
{
"version":"2.0.0rc2",
"status":"failure",
"message":"NLU training data exceeds size limit of 100.",
"reason":"TrainingError",
"details":{},
"help":null,
"code":422
}
Would be cool to have the error pop-up in the front-end and to have an idea of what’s the limit we can play with with the prototype!
My NLU data:
nlu:
- intent: greet
examples: |
- Hi
- Hey!
- Hallo
- intent: how_are_you
examples: |
- How are you doing?
- What's up?
- How are things going?
- How you doin?
- intent: good
examples: |
- good
- great!
- fantastic
- intent: bad
examples:
- i'm depresed
- terrible
- i feel horrible
- feeling bad
- intent: subscribe
examples: |
- I want to get the newsletter
- Can you send me the newsletter?
- Can you sign me up for the newsletter?
- intent: inform
examples: |
- My email is example@example.com
- random@example.com
- Please send it to anything@example.com
- Email is something@example.com
Cheers Nicolas