View Source ExOpenAI.Components.ChatkitWorkflow (ex_openai.ex v2.0.0-beta2)

Workflow metadata and state returned for the session.

Fields

  • :id - required - String.t()
    Identifier of the workflow backing the session.

  • :state_variables - required - map() | any()

  • :tracing - required - ExOpenAI.Components.ChatkitWorkflowTracing.t()
    Tracing settings applied to the workflow.

  • :version - required - String.t() | any()

Summary

Types

@type t() :: %ExOpenAI.Components.ChatkitWorkflow{
  id: String.t(),
  state_variables: map() | any(),
  tracing: ExOpenAI.Components.ChatkitWorkflowTracing.t(),
  version: String.t() | any()
}