export declare const DEFAULT_MAX_TOKENS: 4096; export declare const DEFAULT_TEMPERATURE: 0; export declare const MAX_STREAM_BUFFER_SIZE: number; export declare const DEFAULT_MAX_STEPS = 20; /** * Conservative fallback max output token limit for models not in MODEL_MAX_OUTPUT_TOKENS. * Using a lower bound prevents unbounded generation on unknown models; update the table * with the actual limit once the model is confirmed. */ export declare const FALLBACK_MODEL_MAX_OUTPUT_TOKENS = 4096; /** Look up max output tokens for a model, stripping the `veryfront-cloud/` prefix. */ export declare function getModelMaxOutputTokens(modelString: string): number; //# sourceMappingURL=constants.d.ts.map