-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change default session timeout from 0 to 60 minutes
This enables sessions by default.
- Loading branch information
Showing
4 changed files
with
25 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Conversation sessions](domain.mdx#session-configuration) are now enabled by default | ||
if your [Domain](domain.mdx) does not contain a session configuration. | ||
Previously a missing session configuration was treated as if conversation sessions | ||
were disabled. You can explicitly disable conversation sessions using the following | ||
snippet: | ||
|
||
```yaml-rasa title="domain.yml" | ||
session_config: | ||
# A session expiration time of `0` | ||
# disables conversation sessions | ||
session_expiration_time: 0 | ||
``` |
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