Current section

Files

Jump to
ex_openai lib ex_openai generated components annotation.ex
Raw

lib/ex_openai/generated/components/annotation.ex

defmodule ExOpenAI.Components.Annotation do
use ExOpenAI.Jason
@moduledoc """
An annotation that applies to a span of output text.
## Type
`ExOpenAI.Components.FileCitationBody.t() | ExOpenAI.Components.UrlCitationBody.t() | ExOpenAI.Components.ContainerFileCitationBody.t() | ExOpenAI.Components.FilePath.t()`
"""
@type t() ::
((ExOpenAI.Components.FileCitationBody.t() | ExOpenAI.Components.UrlCitationBody.t())
| ExOpenAI.Components.ContainerFileCitationBody.t())
| ExOpenAI.Components.FilePath.t()
end