/** 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 GenerationChunkInputContextAdherence: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type GenerationChunkInputContextAdherence = (typeof GenerationChunkInputContextAdherence)[keyof typeof GenerationChunkInputContextAdherence];