View Source OpenAi.Message.Delta.Content.Image.Url (OpenAI REST API Client v0.4.4)

MessageDeltaContentImageUrlObject: title: Image URL type: object description: References an image URL in the content of a message. properties:

  index:
      type: integer
      description: The index of the content part in the message.
  type:
      description: Always `image_url`.
      type: string
      enum: ["image_url"]
  image_url:
      type: object
      properties:
          url:
              description: "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp."
              type: string
          detail:
              type: string
              description: Specifies the detail level of the image. `low` uses fewer tokens, you can opt in to high resolution using `high`.
              enum: ["auto", "low", "high"]
              default: "auto"

required:

  - index
  - type

Summary

Types

@type t() :: %OpenAi.Message.Delta.Content.Image.Url{
  image_url: OpenAi.Message.Delta.Content.Image.UrlImageUrl.t(),
  index: integer(),
  type: String.t()
}