/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * Defaults to `"accurate"`.
 *
 * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
 *
 * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
 */
export declare type ChatRequestCitationQuality = "fast" | "accurate" | "off";
export declare const ChatRequestCitationQuality: {
    readonly Fast: "fast";
    readonly Accurate: "accurate";
    readonly Off: "off";
};
