/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vectara from "../../api/index"; import * as core from "../../core"; import { Language } from "./Language"; import { ModelParameters } from "./ModelParameters"; import { CitationParameters } from "./CitationParameters"; export declare const GenerationParameters: core.serialization.ObjectSchema; export declare namespace GenerationParameters { interface Raw { generation_preset_name?: string | null; prompt_name?: string | null; max_used_search_results?: number | null; prompt_template?: string | null; prompt_text?: string | null; max_response_characters?: number | null; response_language?: Language.Raw | null; model_parameters?: ModelParameters.Raw | null; citations?: CitationParameters.Raw | null; enable_factual_consistency_score?: boolean | null; } }