Merge pull request #5346 from mattiacerutti/fix/remove-codex-models
fix(ai): remove stale codex models
This commit is contained in:
@@ -1740,30 +1740,6 @@ async function generateModels() {
|
|||||||
const CODEX_SPARK_CONTEXT = 128000;
|
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">[] = [
|
||||||
{
|
|
||||||
id: "gpt-5.2",
|
|
||||||
name: "GPT-5.2",
|
|
||||||
api: "openai-codex-responses",
|
|
||||||
provider: "openai-codex",
|
|
||||||
baseUrl: CODEX_BASE_URL,
|
|
||||||
reasoning: true,
|
|
||||||
input: ["text", "image"],
|
|
||||||
cost: { input: 1.75, output: 14, cacheRead: 0.175, cacheWrite: 0 },
|
|
||||||
contextWindow: CODEX_CONTEXT,
|
|
||||||
maxTokens: CODEX_MAX_TOKENS,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "gpt-5.3-codex",
|
|
||||||
name: "GPT-5.3 Codex",
|
|
||||||
api: "openai-codex-responses",
|
|
||||||
provider: "openai-codex",
|
|
||||||
baseUrl: CODEX_BASE_URL,
|
|
||||||
reasoning: true,
|
|
||||||
input: ["text", "image"],
|
|
||||||
cost: { input: 1.75, output: 14, cacheRead: 0.175, cacheWrite: 0 },
|
|
||||||
contextWindow: CODEX_CONTEXT,
|
|
||||||
maxTokens: CODEX_MAX_TOKENS,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "gpt-5.3-codex-spark",
|
id: "gpt-5.3-codex-spark",
|
||||||
name: "GPT-5.3 Codex Spark",
|
name: "GPT-5.3 Codex Spark",
|
||||||
|
|||||||
@@ -5630,13 +5630,13 @@ export const MODELS = {
|
|||||||
reasoning: true,
|
reasoning: true,
|
||||||
input: ["text", "image"],
|
input: ["text", "image"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 0.3,
|
input: 0.6,
|
||||||
output: 1.2,
|
output: 2.4,
|
||||||
cacheRead: 0.06,
|
cacheRead: 0.12,
|
||||||
cacheWrite: 0.375,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
contextWindow: 512000,
|
contextWindow: 512000,
|
||||||
maxTokens: 131072,
|
maxTokens: 128000,
|
||||||
} satisfies Model<"anthropic-messages">,
|
} satisfies Model<"anthropic-messages">,
|
||||||
},
|
},
|
||||||
"minimax-cn": {
|
"minimax-cn": {
|
||||||
@@ -5683,13 +5683,13 @@ export const MODELS = {
|
|||||||
reasoning: true,
|
reasoning: true,
|
||||||
input: ["text", "image"],
|
input: ["text", "image"],
|
||||||
cost: {
|
cost: {
|
||||||
input: 0.3,
|
input: 0.6,
|
||||||
output: 1.2,
|
output: 2.4,
|
||||||
cacheRead: 0.06,
|
cacheRead: 0.12,
|
||||||
cacheWrite: 0.375,
|
cacheWrite: 0,
|
||||||
},
|
},
|
||||||
contextWindow: 512000,
|
contextWindow: 512000,
|
||||||
maxTokens: 131072,
|
maxTokens: 128000,
|
||||||
} satisfies Model<"anthropic-messages">,
|
} satisfies Model<"anthropic-messages">,
|
||||||
},
|
},
|
||||||
"mistral": {
|
"mistral": {
|
||||||
@@ -5727,6 +5727,23 @@ export const MODELS = {
|
|||||||
contextWindow: 262144,
|
contextWindow: 262144,
|
||||||
maxTokens: 262144,
|
maxTokens: 262144,
|
||||||
} satisfies Model<"mistral-conversations">,
|
} satisfies Model<"mistral-conversations">,
|
||||||
|
"devstral-latest": {
|
||||||
|
id: "devstral-latest",
|
||||||
|
name: "Devstral 2",
|
||||||
|
api: "mistral-conversations",
|
||||||
|
provider: "mistral",
|
||||||
|
baseUrl: "https://api.mistral.ai",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
cost: {
|
||||||
|
input: 0.4,
|
||||||
|
output: 2,
|
||||||
|
cacheRead: 0,
|
||||||
|
cacheWrite: 0,
|
||||||
|
},
|
||||||
|
contextWindow: 262144,
|
||||||
|
maxTokens: 262144,
|
||||||
|
} satisfies Model<"mistral-conversations">,
|
||||||
"devstral-medium-2507": {
|
"devstral-medium-2507": {
|
||||||
id: "devstral-medium-2507",
|
id: "devstral-medium-2507",
|
||||||
name: "Devstral Medium",
|
name: "Devstral Medium",
|
||||||
@@ -6101,6 +6118,23 @@ export const MODELS = {
|
|||||||
contextWindow: 8000,
|
contextWindow: 8000,
|
||||||
maxTokens: 8000,
|
maxTokens: 8000,
|
||||||
} satisfies Model<"mistral-conversations">,
|
} satisfies Model<"mistral-conversations">,
|
||||||
|
"open-mistral-nemo": {
|
||||||
|
id: "open-mistral-nemo",
|
||||||
|
name: "Open Mistral Nemo",
|
||||||
|
api: "mistral-conversations",
|
||||||
|
provider: "mistral",
|
||||||
|
baseUrl: "https://api.mistral.ai",
|
||||||
|
reasoning: false,
|
||||||
|
input: ["text"],
|
||||||
|
cost: {
|
||||||
|
input: 0.15,
|
||||||
|
output: 0.15,
|
||||||
|
cacheRead: 0,
|
||||||
|
cacheWrite: 0,
|
||||||
|
},
|
||||||
|
contextWindow: 128000,
|
||||||
|
maxTokens: 128000,
|
||||||
|
} satisfies Model<"mistral-conversations">,
|
||||||
"open-mixtral-8x22b": {
|
"open-mixtral-8x22b": {
|
||||||
id: "open-mixtral-8x22b",
|
id: "open-mixtral-8x22b",
|
||||||
name: "Mixtral 8x22B",
|
name: "Mixtral 8x22B",
|
||||||
@@ -7549,42 +7583,6 @@ export const MODELS = {
|
|||||||
} satisfies Model<"openai-responses">,
|
} satisfies Model<"openai-responses">,
|
||||||
},
|
},
|
||||||
"openai-codex": {
|
"openai-codex": {
|
||||||
"gpt-5.2": {
|
|
||||||
id: "gpt-5.2",
|
|
||||||
name: "GPT-5.2",
|
|
||||||
api: "openai-codex-responses",
|
|
||||||
provider: "openai-codex",
|
|
||||||
baseUrl: "https://chatgpt.com/backend-api",
|
|
||||||
reasoning: true,
|
|
||||||
thinkingLevelMap: {"xhigh":"xhigh","minimal":"low"},
|
|
||||||
input: ["text", "image"],
|
|
||||||
cost: {
|
|
||||||
input: 1.75,
|
|
||||||
output: 14,
|
|
||||||
cacheRead: 0.175,
|
|
||||||
cacheWrite: 0,
|
|
||||||
},
|
|
||||||
contextWindow: 272000,
|
|
||||||
maxTokens: 128000,
|
|
||||||
} satisfies Model<"openai-codex-responses">,
|
|
||||||
"gpt-5.3-codex": {
|
|
||||||
id: "gpt-5.3-codex",
|
|
||||||
name: "GPT-5.3 Codex",
|
|
||||||
api: "openai-codex-responses",
|
|
||||||
provider: "openai-codex",
|
|
||||||
baseUrl: "https://chatgpt.com/backend-api",
|
|
||||||
reasoning: true,
|
|
||||||
thinkingLevelMap: {"xhigh":"xhigh","minimal":"low"},
|
|
||||||
input: ["text", "image"],
|
|
||||||
cost: {
|
|
||||||
input: 1.75,
|
|
||||||
output: 14,
|
|
||||||
cacheRead: 0.175,
|
|
||||||
cacheWrite: 0,
|
|
||||||
},
|
|
||||||
contextWindow: 272000,
|
|
||||||
maxTokens: 128000,
|
|
||||||
} satisfies Model<"openai-codex-responses">,
|
|
||||||
"gpt-5.3-codex-spark": {
|
"gpt-5.3-codex-spark": {
|
||||||
id: "gpt-5.3-codex-spark",
|
id: "gpt-5.3-codex-spark",
|
||||||
name: "GPT-5.3 Codex Spark",
|
name: "GPT-5.3 Codex Spark",
|
||||||
|
|||||||
Reference in New Issue
Block a user