Current section

Files

Jump to
ex_openai lib ex_openai generated components image_detail.ex
Raw

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