Merge pull request #3369 from skyswordw/codex/default-ccswitch-openai-gpt-55

fix(ccswitch): default OpenAI import model to gpt-5.5
This commit is contained in:
Wesley Liddick
2026-06-21 21:16:07 +08:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
@@ -11,6 +11,10 @@ function paramsFromDeeplink(deeplink: string): URLSearchParams {
}
describe('ccswitchImport utils', () => {
it('defaults OpenAI CC Switch imports to the current Codex model', () => {
expect(OPENAI_CC_SWITCH_CODEX_MODEL).toBe('gpt-5.5')
})
const baseInput = {
baseUrl: 'https://api.example.com',
providerName: 'Sub2API',
+1 -1
View File
@@ -1,6 +1,6 @@
import type { GroupPlatform } from '@/types'
export const OPENAI_CC_SWITCH_CODEX_MODEL = 'gpt-5.4'
export const OPENAI_CC_SWITCH_CODEX_MODEL = 'gpt-5.5'
export type CcSwitchClientType = 'claude' | 'gemini'