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

The image output from the code interpreter.

Fields

  • :type - required - :image
    The type of the output. Always image.
    Allowed values: "image"
    Default: "image"

  • :url - required - String.t()
    The URL of the image output from the code interpreter.

Summary

Types

@type t() :: %ExOpenAI.Components.CodeInterpreterOutputImage{
  type: :image,
  url: String.t()
}