View Source OpenAi.Run.Step.Delta.Step.DetailsToolCallsCodeOutputLogs (OpenAI REST API Client v0.4.4)

Provides struct and type for a Run.Step.Delta.Step.DetailsToolCallsCodeOutputLogs

RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject: title: Code interpreter log output type: object description: Text output from the Code Interpreter tool call as part of a run step. properties:

  index:
      type: integer
      description: The index of the output in the outputs array.
  type:
      description: Always `logs`.
      type: string
      enum: ["logs"]
  logs:
      type: string
      description: The text output from the Code Interpreter tool call.

required:

  - index
  - type

Summary

Types

@type t() :: %OpenAi.Run.Step.Delta.Step.DetailsToolCallsCodeOutputLogs{
  index: integer(),
  logs: String.t(),
  type: String.t()
}