fix(ai): correct Codex Spark context window

closes #4969
This commit is contained in:
Armin Ronacher
2026-05-26 09:08:40 +02:00
parent fa1180b6b7
commit 71446c6c2b
3 changed files with 4 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
### Fixed ### Fixed
- Fixed `openai-codex/gpt-5.3-codex-spark` generated metadata to use its 128k context window ([#4969](https://github.com/earendil-works/pi/issues/4969)).
- Fixed OpenRouter/Poolside context overflow detection for `maximum allowed input length` errors ([#4943](https://github.com/earendil-works/pi/issues/4943)). - Fixed OpenRouter/Poolside context overflow detection for `maximum allowed input length` errors ([#4943](https://github.com/earendil-works/pi/issues/4943)).
## [0.75.5] - 2026-05-23 ## [0.75.5] - 2026-05-23

View File

@@ -1512,6 +1512,7 @@ async function generateModels() {
// Context window is based on observed server limits (400s above ~272k), not marketing numbers. // Context window is based on observed server limits (400s above ~272k), not marketing numbers.
const CODEX_BASE_URL = "https://chatgpt.com/backend-api"; const CODEX_BASE_URL = "https://chatgpt.com/backend-api";
const CODEX_CONTEXT = 272000; const CODEX_CONTEXT = 272000;
const CODEX_SPARK_CONTEXT = 128000;
const CODEX_MAX_TOKENS = 128000; const CODEX_MAX_TOKENS = 128000;
const codexModels: Model<"openai-codex-responses">[] = [ const codexModels: Model<"openai-codex-responses">[] = [
{ {
@@ -1547,7 +1548,7 @@ async function generateModels() {
reasoning: true, reasoning: true,
input: ["text"], input: ["text"],
cost: { input: 1.75, output: 14, cacheRead: 0.175, cacheWrite: 0 }, cost: { input: 1.75, output: 14, cacheRead: 0.175, cacheWrite: 0 },
contextWindow: CODEX_CONTEXT, contextWindow: CODEX_SPARK_CONTEXT,
maxTokens: CODEX_MAX_TOKENS, maxTokens: CODEX_MAX_TOKENS,
}, },
{ {

View File

@@ -6977,7 +6977,7 @@ export const MODELS = {
cacheRead: 0.175, cacheRead: 0.175,
cacheWrite: 0, cacheWrite: 0,
}, },
contextWindow: 272000, contextWindow: 128000,
maxTokens: 128000, maxTokens: 128000,
} satisfies Model<"openai-codex-responses">, } satisfies Model<"openai-codex-responses">,
"gpt-5.4": { "gpt-5.4": {