/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
/**
 * Options for controlling citation generation.
 */
export interface CitationOptions {
    /**
     * 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.
     */
    mode?: Cohere.CitationOptionsMode;
}
