Show / Hide Table of Contents

Class Annotation

An annotation attached to the assistant's message, used to represent additional metadata such as citations.

Inheritance
object
Annotation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class Annotation

Properties

Type

Declaration
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
Type Description
string

Type of annotation. For web search citations, this is url_citation.

UrlCitation

Declaration
[JsonProperty(PropertyName = "urlCitation")]
public UrlCitation UrlCitation { get; set; }
Property Value
Type Description
UrlCitation
In this article
Back to top