Skip to content

Commit

Permalink
enable conversation sessions by default (#6934)
Browse files Browse the repository at this point in the history
* delete duplicate session config constants

* change default session timeout from 0 to 60 minutes

This enables sessions by default.

Co-authored-by: Roberto <43567378+rasabot@users.noreply.github.com>
  • Loading branch information
wochinge and rasabot authored Oct 6, 2020
1 parent 1d5c0e0 commit 0fc5d25
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
12 changes: 12 additions & 0 deletions changelog/6934.removal.md
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
```
12 changes: 12 additions & 0 deletions docs/docs/migration-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ how you can migrate from one version to another.
component in your `policies` configuration (`config.yml`) you can replace it
with `TEDPolicy`. It accepts the same configuration parameters.

* [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
```

### Training data files

You can convert existing NLU, Stories, and NLG (i.e. `responses.md`) training data
Expand Down
3 changes: 0 additions & 3 deletions rasa/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@
ENV_SANIC_WORKERS = "SANIC_WORKERS"
ENV_SANIC_BACKLOG = "SANIC_BACKLOG"

DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES = 0
DEFAULT_CARRY_OVER_SLOTS_TO_NEW_SESSION = True

ENV_GPU_CONFIG = "TF_GPU_MEMORY_ALLOC"
ENV_CPU_INTER_OP_CONFIG = "TF_INTER_OP_PARALLELISM_THREADS"
ENV_CPU_INTRA_OP_CONFIG = "TF_INTRA_OP_PARALLELISM_THREADS"
2 changes: 1 addition & 1 deletion rasa/shared/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

DOMAIN_SCHEMA_FILE = "utils/schemas/domain.yml"

DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES = 0
DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES = 60
DEFAULT_CARRY_OVER_SLOTS_TO_NEW_SESSION = True

DEFAULT_NLU_FALLBACK_INTENT_NAME = "nlu_fallback"
Expand Down
2 changes: 0 additions & 2 deletions rasa/shared/core/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class SessionConfig(NamedTuple):

@staticmethod
def default() -> "SessionConfig":
# TODO: 2.0, reconsider how to apply sessions to old projects
return SessionConfig(
rasa.shared.constants.DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES,
rasa.shared.constants.DEFAULT_CARRY_OVER_SLOTS_TO_NEW_SESSION,
Expand Down Expand Up @@ -185,7 +184,6 @@ def from_dict(cls, data: Dict) -> "Domain":
def _get_session_config(session_config: Dict) -> SessionConfig:
session_expiration_time_min = session_config.get(SESSION_EXPIRATION_TIME_KEY)

# TODO: 2.0 reconsider how to apply sessions to old projects and legacy trackers
if session_expiration_time_min is None:
session_expiration_time_min = (
rasa.shared.constants.DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES
Expand Down
2 changes: 1 addition & 1 deletion tests/shared/core/test_domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pytest

import rasa.shared.utils.io
from rasa.constants import DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES
from rasa.shared.constants import DEFAULT_SESSION_EXPIRATION_TIME_IN_MINUTES
from rasa.core import training, utils
from rasa.core.featurizers.tracker_featurizers import MaxHistoryTrackerFeaturizer
from rasa.shared.core.slots import TextSlot
Expand Down

0 comments on commit 0fc5d25

Please sign in to comment.