/** * Absolute minimum prompt budget in tokens. When the context window is * large enough that `contextTokenBudget * MIN_PROMPT_BUDGET_RATIO` exceeds * this value, this absolute floor takes precedence. */ export declare const MIN_PROMPT_BUDGET_TOKENS = 8000; /** * Minimum share of the context window that must remain available for prompt * content after reserve tokens are subtracted. */ export declare const MIN_PROMPT_BUDGET_RATIO = 0.5;