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

Schema representing a CodeInterpreterToolCall within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.CodeInterpreterToolCall{
  code: String.t(),
  id: String.t(),
  results: [ExOpenAI.Components.CodeInterpreterToolOutput.t()],
  status: :completed | :interpreting | :in_progress,
  type: :code_interpreter_call
}