We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 92ce5bf + d3dfa28 commit d2ff9c0Copy full SHA for d2ff9c0
2 files changed
frontend/src/utils/__tests__/ccswitchImport.spec.ts
@@ -11,6 +11,10 @@ function paramsFromDeeplink(deeplink: string): URLSearchParams {
11
}
12
13
describe('ccswitchImport utils', () => {
14
+ it('defaults OpenAI CC Switch imports to the current Codex model', () => {
15
+ expect(OPENAI_CC_SWITCH_CODEX_MODEL).toBe('gpt-5.5')
16
+ })
17
+
18
const baseInput = {
19
baseUrl: 'https://api.example.com',
20
providerName: 'Sub2API',
frontend/src/utils/ccswitchImport.ts
@@ -1,6 +1,6 @@
1
import type { GroupPlatform } from '@/types'
2
3
-export const OPENAI_CC_SWITCH_CODEX_MODEL = 'gpt-5.4'
+export const OPENAI_CC_SWITCH_CODEX_MODEL = 'gpt-5.5'
4
5
export type CcSwitchClientType = 'claude' | 'gemini'
6
0 commit comments