Rasa
Learn how to use our NLU export with Rasa
Quick Reference
Data | Support |
---|---|
File format | YAML and PY |
Data Support | |
Intents | ✅ |
Training Phrases | ✅ |
Entities | ✅ |
Synonyms | ✅ |
Import Type | |
Modify | ✅ |
Overwrite | ✅ |
Video Walkthrough
Sample Intent Export
nlu:
- intent: spell_intent
examples: |
- sure [DOG](spell)
- sure [CAR](spell)
- sure [HOUSE](spell)
- sure [ROCK](spell)
- sure [PIZZA](spell)
- sure [FRIDGE](spell)
- its [DOG](spell)
- its [CAR](spell)
- its [HOUSE](spell)
- its [ROCK](spell)
- its [PIZZA](spell)
- its [FRIDGE](spell)
- intent: noanswer_intent
examples: |
- it's too hard
- I can't spell that word
- I don't know how to spell it
- intent: VF.NO
examples: |
- no
- nope
- nay
- nah
- no way
- negative
- intent: VF.YES
examples: |
- yes
- yea
- ok
- okay
- yup
- ya
- sure
- synonym: DOG
examples: |
- d. o. g.
- d o g
- synonym: CAR
examples: |
- c. a. r.
- c a r
- synonym: HOUSE
examples: |
- h. o. u. s. e.
- h o u s e
- synonym: ROCK
examples: |
- r. o. c. k.
- r o c k
- synonym: PIZZA
examples: |
- p. i. z. z. a.
- p i z z a
- synonym: FRIDGE
examples: |
- f. r. i. d. g. e.
- f r i d g e
Updated about 1 year ago