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

The output of a code interpreter tool call that is text.

Fields

  • :logs - required - String.t()
    The logs of the code interpreter tool call.

  • :type - required - :logs
    The type of the code interpreter text output. Always logs.
    Allowed values: "logs"

Summary

Types

@type t() :: %ExOpenAI.Components.CodeInterpreterTextOutput{
  logs: String.t(),
  type: :logs
}