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.
Inherited Members
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class UrlCitationProperties
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. |