/** How much the model adheres to the context of its surrounding chunks. Low adherence means the model can deviate from the context and be more creative. High adherence means the model will be more consistent with the context. */ export declare const GenerationChunkOutputContextAdherence: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type GenerationChunkOutputContextAdherence = (typeof GenerationChunkOutputContextAdherence)[keyof typeof GenerationChunkOutputContextAdherence];