We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0207a1f commit 14cc21dCopy full SHA for 14cc21d
src/shared/api.ts
@@ -850,6 +850,17 @@ export const geminiModels = {
850
export type OpenAiNativeModelId = keyof typeof openAiNativeModels
851
export const openAiNativeDefaultModelId: OpenAiNativeModelId = "gpt-4.1"
852
export const openAiNativeModels = {
853
+ // Fails with:
854
+ // 404 This model is only supported in v1/responses and not in v1/chat/completions.
855
+ // "codex-mini-latest": {
856
+ // maxTokens: 100_000,
857
+ // contextWindow: 200_000,
858
+ // supportsImages: true,
859
+ // supportsPromptCache: true,
860
+ // inputPrice: 1.5,
861
+ // outputPrice: 6.0,
862
+ // cacheReadsPrice: 0.375,
863
+ // },
864
"gpt-4.1": {
865
maxTokens: 32_768,
866
contextWindow: 1_047_576,
0 commit comments