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

Schema representing a FunctionToolCall within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.FunctionToolCall{
  arguments: String.t(),
  call_id: String.t(),
  id: String.t(),
  name: String.t(),
  status: (:incomplete | :completed | :in_progress) | nil,
  type: :function_call
}