forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into spacy-3-dot-0-support
- Loading branch information
Showing
167 changed files
with
1,877 additions
and
1,350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fix for the cli command `rasa data convert config` when migrating Mapping Policy and no rules. | ||
|
||
Making `rasa data convert config` migrate correctly the Mapping Policy when no rules are available. It updates the `config.yml` file by removing the `MappingPolicy` and adding the `RulePolicy` instead. Also, it creates the `data/rules.yml` file even if empty in the case of no available rules. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Replace Markdown training data in tests with YAML training data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Speed up `YAMLStoryReader.is_key_in_yaml` function by making it to check if key is in YAML without | ||
actually parsing the text file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Speed up YAML parsing by reusing parsers, making the process of environment variable interpolation optional, | ||
and by not adding duplicating implicit resolvers and YAML constructors to `ruamel.yaml` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update links to Sanic docs in the documentation. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
version: "2.0" | ||
nlu: | ||
- intent: affirm | ||
examples: | | ||
- yes | ||
- yep | ||
- yeah | ||
- indeed | ||
- that's right | ||
- ok | ||
- great | ||
- right, thank you | ||
- correct | ||
- great choice | ||
- sounds really good | ||
- intent: goodbye | ||
examples: | | ||
- bye | ||
- goodbye | ||
- good bye | ||
- stop | ||
- end | ||
- farewell | ||
- Bye bye | ||
- have a good one | ||
- intent: greet | ||
examples: | | ||
- hey | ||
- howdy | ||
- hey there | ||
- hello | ||
- hi | ||
- good morning | ||
- good evening | ||
- dear sir | ||
- intent: chitchat+ask_name | ||
examples: | | ||
- What's your name? | ||
- What can I call you? | ||
- intent: chitchat+ask_weather | ||
examples: | | ||
- How's the weather? | ||
- Is it too hot outside? | ||
- intent: restaurant_search | ||
examples: | | ||
- i'm looking for a place to eat | ||
- I want to grab lunch | ||
- I am searching for a dinner spot | ||
- i'm looking for a place in the [north](location) of town | ||
- show me [chinese](cuisine) restaurants | ||
- show me [chines]{"entity": "cuisine", "value": "chinese"} restaurants in the [north](location) | ||
- show me a [mexican](cuisine) place in the [centre](location) | ||
- i am looking for an [indian](cuisine) spot called olaolaolaolaolaola | ||
- search for restaurants | ||
- anywhere in the [west](location) | ||
- anywhere near [18328](location) | ||
- I am looking for [asian fusion](cuisine) food | ||
- I am looking a restaurant in [29432](location) | ||
- I am looking for [mexican indian fusion](cuisine) | ||
- [central](location) [indian](cuisine) restaurant | ||
- synonym: chinese | ||
examples: | | ||
- chines | ||
- Chines | ||
- Chinese | ||
- synonym: vegetarian | ||
examples: | | ||
- vegg | ||
- veggie | ||
- regex: greet | ||
examples: | | ||
- hey[^\s]* | ||
- regex: zipcode | ||
examples: | | ||
- [0-9]{5} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
responses: | ||
utter_chitchat/ask_weather: | ||
- text: It's sunny where I live | ||
|
||
utter_chitchat/ask_name: | ||
- text: I am Mr. Bot |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.