Changed
ReminderScheduled
andReminderCancelled
now takeintent
andentities
as options, instead ofaction
. This is because starting with Rasa 1.7 reminders
trigger intents (with entities) instead of actions.- The following
FormAction
methods are nowasync
by default:validate_slots
,
validate
,submit
andrun
. User-defined classes inheriting from
FormAction
should be adapted to useasync
for these methods. Existing
synchronous implementations will continue to work as normal, but this behaviour will
be deprecated in the future. - The following
ActionQueryKnowledgeBase
methods are nowasync
:
utter_objects
andrun
. - The following
KnowledgeBase
methods are nowasync
:
get_attributes_of_object
,get_key_attribute_of_object
,
get_representation_function_of_object
,get_objects
andget_object
. Same
warning forFormAction
applies here - user-defined classes should be updated to
useasync
, but will continue to work for the moment. - The following
InMemoryKnowledgeBase
methods are nowasync
:
get_attributes_of_object
,get_objects
andget_object
.