-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
1,620 additions
and
230 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add story structure validation functionality (e.g. `rasa data validate stories --max-history 5`). |
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 @@ | ||
Updated the documentation to properly suggest not to explicitly add utterance actions to the domain. |
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 @@ | ||
Added user guide for reminders and external events, including ``reminderbot`` demo. |
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 @@ | ||
Added `db-shm` and `db-wal` files to `.gitignore` |
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 @@ | ||
Fixed incorrectly raised Error encountered in pipelines with a ``ResponseSelector`` and NLG. | ||
|
||
When NLU training data is split before NLU pipeline comparison, | ||
NLG responses were not also persisted and therefore training for a pipeline including the ``ResponseSelector`` would fail. | ||
|
||
NLG responses are now persisted along with NLU data to a ``/train`` directory in the ``run_x/xx%_exclusion`` folder. |
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 @@ | ||
Added ``followlinks=True`` to os.walk calls, to allow the use of symlinks in training, NLU and domain 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,10 @@ | ||
Events exported using ``rasa export`` receive a message header if published through a | ||
``PikaEventBroker``. The header is added to the message's ``BasicProperties.headers`` | ||
under the ``rasa-export-process-id`` key | ||
(``rasa.core.constants.RASA_EXPORT_PROCESS_ID_HEADER_NAME``). The value is a | ||
UUID4 generated at each call of ``rasa export``. The resulting header is a key-value | ||
pair that looks as follows: | ||
|
||
.. code-block:: text | ||
'rasa-export-process-id': 'd3b3d3ffe2bd4f379ccf21214ccfb261' |
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 |
---|---|---|
|
@@ -19,8 +19,3 @@ responses: | |
- goodbye :( | ||
utter_default: | ||
- default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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 |
---|---|---|
|
@@ -23,7 +23,3 @@ responses: | |
utter_default: | ||
- text: default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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 |
---|---|---|
|
@@ -10,8 +10,3 @@ responses: | |
- goodbye :( | ||
utter_default: | ||
- default message | ||
|
||
actions: | ||
- utter_default | ||
- utter_greet | ||
- utter_goodbye |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
intents: | ||
- goodbye | ||
|
||
actions: | ||
- utter_goodbye | ||
|
||
responses: | ||
utter_goodbye: | ||
- text: "Bye" |
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,15 @@ | ||
## story 1 | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
|
||
## story 2 | ||
* default | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_default |
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,14 @@ | ||
## greetings | ||
* greet | ||
- utter_greet | ||
> check_greet | ||
## happy path | ||
> check_greet | ||
* default | ||
- utter_default | ||
|
||
## problem | ||
> check_greet | ||
* default | ||
- utter_goodbye |
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,14 @@ | ||
## greetings | ||
* greet | ||
- utter_greet | ||
> check_greet | ||
## happy path | ||
> check_greet | ||
* default OR greet | ||
- utter_default | ||
|
||
## problem | ||
> check_greet | ||
* greet | ||
- utter_goodbye |
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,17 @@ | ||
## story 1 | ||
* greet | ||
- utter_greet | ||
* greet | ||
- slot{"cuisine": "German"} | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
|
||
## story 2 | ||
* greet | ||
- utter_greet | ||
* greet | ||
- slot{"cuisine": "German"} | ||
- utter_greet | ||
* greet | ||
- utter_default |
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,16 @@ | ||
## story 1 | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
- slot{"cuisine": "German"} | ||
* greet | ||
- utter_greet | ||
|
||
## story 2 | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_greet | ||
* greet | ||
- utter_default |
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,22 @@ | ||
## story 1 | ||
* greet | ||
- utter_greet | ||
|
||
## story 2 | ||
* greet | ||
- utter_default | ||
|
||
## story 3 | ||
* greet | ||
- utter_default | ||
* greet | ||
|
||
## story 4 | ||
* greet | ||
- utter_default | ||
* default | ||
|
||
## story 5 | ||
* greet | ||
- utter_default | ||
* goodbye |
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
Oops, something went wrong.