Tracker
Tracker
Trackers maintain the state of a dialogue between the assistant and the user in the form of conversation sessions. To learn more about how to configure the session behavior, check out the docs on Session configuration.
Class rasa.core.trackers.DialogueStateTracker
Maintains the state of a conversation.
The field max_event_history will only give you these last events, it can be set in the tracker_store.
Methods
applied_events()
Returns all actions that should be applied - w/o reverted events.
Return type:List[Event]as_dialogue()
Return aDialogueobject containing all of the turns.
This can be serialised and later used to recover the state of this tracker exactly.
Return type:Dialoguechange_form_to(form_name)
Activate or deactivate a form.
Return type:Noneclear_followup_action()
Clears follow up action when it was executed.
Return type:Nonecopy()
Creates a duplicate of this tracker.
Return type:DialogueStateTrackercurrent_slot_values()
Return the currently set values of the slots.
Return type:Dict[str, Any]current_state(event_verbosity=<EventVerbosity.NONE: 1>)
Return the current tracker state as an object.
Return type:Dict[str, Any]events_after_latest_restart()
Return a list of events after the most recent restart.
Return type:List[Event]export_stories(e2e=False, include_source=False)
Dump the tracker as a story in the Rasa Core story format.
Return type:strexport_stories_to_file(export_path='debug.md')
Dump the tracker as a story to a file.
Return type:Nonefrom_dict(sender_id, events_as_dict, slots=None, max_event_history=None)
Create a tracker from dump.
Return type:DialogueStateTrackergenerate_all_prior_trackers()
Returns a generator of the previous trackers of this tracker.
Return type:Generator[DialogueStateTracker, None, None]get_last_event_for(event_type, action_names_to_exclude=None, skip=0)
Gets the last event of a given type which was actually applied.
Return type:Optional[Event]get_latest_entity_values(entity_type, entity_role=None, entity_group=None)
Get entity values found for the passed entity type and optional role and group in the latest message.
Return type:Iterator[str]get_latest_input_channel()
Get the name of the input_channel of the latest UserUttered event.
Return type:Optional[str]get_slot(key)
Retrieves the value of a slot.
Return type:Optional[Any]idx_after_latest_restart()
Return the idx of the most recent restart in the list of events.
Return type:intinit_copy()
Creates a new state tracker with the same initial values.
Return type:DialogueStateTrackeris_paused()
State whether the tracker is currently paused.
Return type:boollast_executed_action_has(name, skip=0)
Returns whether last ActionExecuted event had a specific name.
Return type:boolpast_states(domain)
Generate the past states of this tracker based on the history.
Return type:dequerecreate_from_dialogue(dialogue)
Use a serialised Dialogue to update the tracker's state.
Return type:Nonereject_action(action_name)
Notify active form that it was rejected.
Return type:Nonereplay_events()
Update the tracker based on a list of events.
Return type:Noneset_form_validation(validate)
Toggle form validation.
Return type:Noneset_latest_action_name(action_name)
Set latest action name and reset form validation and rejection parameters.
Return type:Nonetravel_back_in_time(target_time)
Creates a new tracker with a state at a specific timestamp.
Return type:DialogueStateTrackertrigger_followup_action(action)
Triggers another action following the execution of the current.
Return type:Noneupdate(event, domain=None)
Modify the state of the tracker according to anEvent.
Return type:None
👋 I can help you get started with Rasa and answer your technical questions.