import type { ModelInfo } from "../catalog/types"; /** * The ChatGPT/Codex backend starts rejecting requests around 95% of a * model's advertised input cap, so every model exposed through this * provider gets its maxInputTokens scaled down to the effective budget. * * REF: https://github.com/openai/codex/issues/19319 */ export declare const CODEX_EFFECTIVE_CONTEXT_WINDOW_PERCENT = 0.95; export declare function filterOpenAICodexModels(models: Record): Record; //# sourceMappingURL=openai-codex-models.d.ts.map