GlobalIntentEvent

  • Global intent handlers are defined for an entire Actions project and can be overridden by scene-specific handlers.

  • They allow users to access common flows or be deep-linked into specific flows at any point in a session.

  • The intent name for a global intent is specified in the file name.

Defines a global intent handler. Global intent events are scoped to the entire Actions project and may be overridden by intent handlers in a scene. Intent names must be unique within an Actions project.

Global intents can be matched anytime during a session, allowing users to access common flows like "get help" or "go back home." They can also be used to deep link users into specific flows when they invoke an Action.

Note, the intent name is specified in the name of the file.

YAML representation
transitionToScene: string
handler: 
  object (EventHandler)
Fields
transitionToScene

string

Optional. Destination scene which the conversation should jump to. The state of the current scene is destroyed on the transition.

handler

object (EventHandler)

Optional. Event handler which is triggered when the intent is matched. Should execute before transitioning to the destination scene. Useful to generate Prompts in response to events.