mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
- 100 registry files: transport + models co-located per provider (Mongoose-style) - providers/shared.js: shared Claude headers + OS/arch helpers (deduped) - providers/models/helpers.js: withCodexReviewModels (kept dynamic) - providers/index.js builds PROVIDERS + PROVIDER_MODELS = old API (content byte-for-byte) - config/providers.js + providerModels.js → barrel re-export, keep accessors + runtime helpers - Verified: PROVIDERS/MODELS/OAuth/alias byte-for-byte, golden translator tests pass, 0 new regression Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
1.5 KiB
JavaScript
31 lines
1.5 KiB
JavaScript
import { withCodexReviewModels } from "../models/helpers.js";
|
|
|
|
export default {
|
|
id: "codex",
|
|
alias: "cx",
|
|
transport: {
|
|
baseUrl: "https://chatgpt.com/backend-api/codex/responses",
|
|
format: "openai-responses",
|
|
headers: {
|
|
"originator": "codex_cli_rs",
|
|
"User-Agent": "codex_cli_rs/0.136.0"
|
|
},
|
|
clientId: "app_EMoamEEZ73f0CkXaXp7hrann",
|
|
tokenUrl: "https://auth.openai.com/oauth/token"
|
|
},
|
|
models: withCodexReviewModels([
|
|
{ id: "gpt-5.5", name: "GPT 5.5" },
|
|
{ id: "gpt-5.4", name: "GPT 5.4" },
|
|
{ id: "gpt-5.4-mini", name: "GPT 5.4 Mini" },
|
|
{ id: "gpt-5.3-codex", name: "GPT 5.3 Codex" },
|
|
{ id: "gpt-5.3-codex-xhigh", name: "GPT 5.3 Codex (xHigh)" },
|
|
{ id: "gpt-5.3-codex-high", name: "GPT 5.3 Codex (High)" },
|
|
{ id: "gpt-5.3-codex-low", name: "GPT 5.3 Codex (Low)" },
|
|
{ id: "gpt-5.3-codex-none", name: "GPT 5.3 Codex (None)" },
|
|
{ id: "gpt-5.3-codex-spark", name: "GPT 5.3 Codex Spark" },
|
|
{ id: "gpt-5.5-image", name: "GPT 5.5 Image", type: "image", capabilities: ["text2img", "edit"], params: ["size", "quality", "background", "image_detail", "output_format"] },
|
|
{ id: "gpt-5.4-image", name: "GPT 5.4 Image", type: "image", capabilities: ["text2img", "edit"], params: ["size", "quality", "background", "image_detail", "output_format"] },
|
|
{ id: "gpt-5.3-image", name: "GPT 5.3 Image", type: "image", capabilities: ["text2img", "edit"], params: ["size", "quality", "background", "image_detail", "output_format"] }
|
|
])
|
|
};
|