Show / Hide Table of Contents

Class UrlCitation

Contains metadata for a cited URL included in the assistant\u2019s response. Includes the cited URL and title, and the character range (start and end indices) in the response content where the citation applies.

Inheritance
object
UrlCitation
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 UrlCitation

Properties

EndIndex

Declaration
[JsonProperty(PropertyName = "endIndex")]
public int? EndIndex { get; set; }
Property Value
Type Description
int?

End character index in the response where the citation ends.

StartIndex

Declaration
[JsonProperty(PropertyName = "startIndex")]
public int? StartIndex { get; set; }
Property Value
Type Description
int?

Start character index in the response where the citation begins.

Title

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

Title of the cited source.

Url

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

URL of the cited source.

In this article
Back to top