File tree Expand file tree Collapse file tree 7 files changed +32
-7
lines changed Expand file tree Collapse file tree 7 files changed +32
-7
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ This project adheres to `Semantic Versioning`_ starting with version 1.0.
23
23
Bugfixes
24
24
--------
25
25
- `#5505 <https://github.com/rasahq/rasa/issues/5505 >`_: Set default value for ``weight_sparsity `` in ``ResponseSelector `` to ``0 ``.
26
- This fixes a bug in the default behaviour of ``ResponseSelector `` which was accidentally introduced in ``rasa==1.8.0 ``.
27
- Users should update to this version and re-train their models if ``ResponseSelector `` was used in their pipeline.
26
+ This fixes a bug in the default behaviour of ``ResponseSelector `` which was accidentally introduced in ``rasa==1.8.0 ``.
27
+ Users should update to this version and re-train their models if ``ResponseSelector `` was used in their pipeline.
28
28
29
29
30
30
[1.9.2] - 2020-03-26
Original file line number Diff line number Diff line change @@ -33,3 +33,7 @@ actions:
33
33
- action_search_venues
34
34
- action_show_concert_reviews
35
35
- action_show_venue_reviews
36
+
37
+ session_config :
38
+ session_expiration_time : 60 # value in minutes
39
+ carry_over_slots_to_new_session : true
Original file line number Diff line number Diff line change @@ -80,3 +80,7 @@ responses:
80
80
81
81
forms :
82
82
- restaurant_form
83
+
84
+ session_config :
85
+ session_expiration_time : 60 # value in minutes
86
+ carry_over_slots_to_new_session : true
Original file line number Diff line number Diff line change @@ -47,3 +47,8 @@ responses:
47
47
48
48
utter_iamabot :
49
49
- text : " I am a bot, powered by Rasa."
50
+
51
+
52
+ session_config :
53
+ session_expiration_time : 60 # value in minutes
54
+ carry_over_slots_to_new_session : true
Original file line number Diff line number Diff line change @@ -31,3 +31,7 @@ responses:
31
31
32
32
utter_iamabot :
33
33
- text : " I am a bot, powered by Rasa."
34
+
35
+ session_config :
36
+ session_expiration_time : 60 # value in minutes
37
+ carry_over_slots_to_new_session : true
Original file line number Diff line number Diff line change 1
- session_config :
2
- session_expiration_time : 0.0
3
- carry_over_slots_to_new_session : true
4
1
intents :
5
2
- greet :
6
3
triggers : action_set_reminder
@@ -17,19 +14,25 @@ intents:
17
14
- EXTERNAL_reminder :
18
15
triggers : action_react_to_reminder
19
16
- EXT_reminder
17
+
20
18
entities :
21
19
- name
22
20
- plant
21
+
23
22
responses :
24
23
utter_what_can_do :
25
24
- text : What can I do for you?
25
+
26
26
utter_goodbye :
27
27
- text : Bye
28
+
28
29
actions :
29
30
- action_set_reminder
30
31
- action_forget_reminders
31
32
- action_react_to_reminder
32
33
- action_tell_id
33
34
- action_warn_dry
34
- - utter_what_can_do
35
- - utter_goodbye
35
+
36
+ session_config :
37
+ session_expiration_time : 60 # value in minutes
38
+ carry_over_slots_to_new_session : true
Original file line number Diff line number Diff line change @@ -67,3 +67,8 @@ responses:
67
67
actions :
68
68
- action_search_restaurants
69
69
- action_suggest
70
+
71
+ session_config :
72
+ session_expiration_time : 60 # value in minutes
73
+ carry_over_slots_to_new_session : true
74
+
You can’t perform that action at this time.
0 commit comments