View Source :"Elixir.ExOpenAI.Components.ImageRefParam-2" (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema ImageRefParam-2.

Fields

  • :file_id - optional - String.t()

  • :image_url - optional - String.t()
    A fully qualified URL or base64-encoded data URL.
    Constraints: maxLength: 20971520

Summary

Types

@type t() :: %:"Elixir.ExOpenAI.Components.ImageRefParam-2"{
  file_id: String.t() | nil,
  image_url: String.t() | nil
}