feat: Add GPT 5.3 Codex to GitHub Copilot (#150)

* Add GPT-5.3 Codex model to providerModels.js

* Add pricing constants for gpt-5.3-codex
This commit is contained in:
EdamAmex
2026-02-19 14:10:34 +09:00
committed by GitHub
parent 4e2a3f888c
commit c4aa4247bd
2 changed files with 8 additions and 0 deletions

View File

@@ -83,6 +83,7 @@ export const PROVIDER_MODELS = {
{ id: "gpt-5.1-codex-max", name: "GPT-5.1 Codex Max" },
{ id: "gpt-5.2", name: "GPT-5.2" },
{ id: "gpt-5.2-codex", name: "GPT-5.2 Codex" },
{ id: "gpt-5.3-codex", name: "GPT-5.3 Codex" },
// GitHub Copilot - Anthropic models
{ id: "claude-haiku-4.5", name: "Claude Haiku 4.5" },
{ id: "claude-opus-4.1", name: "Claude Opus 4.1" },

View File

@@ -458,6 +458,13 @@ export const DEFAULT_PRICING = {
reasoning: 30.00,
cache_creation: 5.00
},
"gpt-5.3-codex": {
input: 1.75,
output: 14.00,
cached: 0.175,
reasoning: 14.00,
cache_creation: 1.75
},
"claude-haiku-4.5": {
input: 0.50,
output: 2.50,