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

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

RunStepDeltaStepDetailsToolCallsCodeOutputImageObject: title: Code interpreter image output type: object properties:

  index:
      type: integer
      description: The index of the output in the outputs array.
  type:
      description: Always `image`.
      type: string
      enum: ["image"]
  image:
      type: object
      properties:
          file_id:
              description: The [file](https://platform.openai.com/docs/api-reference/files) ID of the image.
              type: string

required:

  - index
  - type

Summary

Types

@type t() :: %OpenAi.Run.Step.Delta.Step.DetailsToolCallsCodeOutputImage{
  image: OpenAi.Run.Step.Delta.Step.DetailsToolCallsCodeOutputImageImage.t(),
  index: integer(),
  type: String.t()
}