Current section
Files
Jump to
Current section
Files
lib/ex_openai/generated/components/image_detail.ex
defmodule ExOpenAI.Components.ImageDetail do
use ExOpenAI.Jason
@moduledoc """
Module for representing the OpenAI schema ImageDetail.
## Type
`:low | :high | :auto | :original`
## Allowed Values
`"low"`, `"high"`, `"auto"`, `"original"`
"""
@type t() :: ((:low | :high) | :auto) | :original
end