Show / Hide Table of Contents

Class CitationOptionsV2

Options for controlling citation generation in RAG flows.

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

Properties

Mode

Declaration
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(StringEnumConverter))]
public CitationOptionsV2.ModeEnum? Mode { get; set; }
Property Value
Type Description
CitationOptionsV2.ModeEnum?

Dictates the approach taken to generating citations as part of the RAG flow. Defaults to "accurate". - "ACCURATE": More precise citation generation. - "FAST": Faster but may be less precise. - "OFF": Disables citation generation. Note: command-r7b-12-2024 and command-a-03-2025 only support "FAST" and "OFF".

In this article
Back to top