View Source ExOpenAI.Components.FunctionToolCallOutput (ex_openai.ex v1.8.0)

Schema representing a FunctionToolCallOutput within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.FunctionToolCallOutput{
  call_id: String.t(),
  id: String.t() | nil,
  output: String.t(),
  status: (:incomplete | :completed | :in_progress) | nil,
  type: :function_call_output
}