Skip to content

Commit

Permalink
Update train request example
Browse files Browse the repository at this point in the history
  • Loading branch information
tabergma committed Aug 19, 2019
1 parent 540304e commit fa066a0
Showing 1 changed file with 83 additions and 10 deletions.
93 changes: 83 additions & 10 deletions docs/_static/spec/rasa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1239,28 +1239,104 @@ components:
description: Rasa NLU training data in markdown format
example: >-
## intent:greet
- hey
- hello
- hi
## intent:goodbye
- cu
- bye
- goodbye
- have a nice day
- see you
## intent:affirm
- yes
- indeed
## intent:deny
- no
- never
## intent:mood_great
- perfect
- very good
- great
## intent:mood_unhappy
- sad
- not good
- unhappy
StoriesTrainingData:
type: string
description: Rasa Core stories in markdown format
example: >-
## happy path
* greet
- utter_greet
* mood_great
- utter_happy
## sad path 1
* greet
- utter_greet
* mood_unhappy
- utter_cheer_up
- utter_did_that_help
* affirm
- utter_happy
## sad path 2
* greet
- utter_greet
* mood_unhappy
- utter_cheer_up
- utter_did_that_help
* deny
- utter_goodbye
## say goodbye
* goodbye
- utter_goodbye
DomainFile:
type: string
description: Rasa domain in plain text
Expand All @@ -1274,11 +1350,11 @@ components:
- mood_unhappy
actions:
- utter_greet
- utter_cheer_up
- utter_did_that_help
- utter_happy
- utter_goodbye
- utter_greet
- utter_cheer_up
- utter_did_that_help
- utter_happy
- utter_goodbye
templates:
utter_greet:
Expand All @@ -1301,13 +1377,10 @@ components:
type: string
description: Rasa config in plain text
example: >-
# Configuration for Rasa NLU.
# https://rasa.com/docs/nlu/components/
language: en
pipeline: supervised_embeddings
# Configuration for Rasa Core.
# https://rasa.com/docs/core/policies
policies:
- name: MemoizationPolicy
- name: KerasPolicy
Expand Down

0 comments on commit fa066a0

Please sign in to comment.