View Source ExOpenAI.Components.UrlAnnotation (ex_openai.ex v2.0.0-beta2)

Annotation that references a URL.

Fields

  • :source - required - ExOpenAI.Components.UrlAnnotationSource.t()
    URL referenced by the annotation.

  • :type - required - :url
    Type discriminator that is always url for this annotation.
    Allowed values: "url"
    Default: "url"

Summary

Types

@type t() :: %ExOpenAI.Components.UrlAnnotation{
  source: ExOpenAI.Components.UrlAnnotationSource.t(),
  type: :url
}