Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17f8a5c

Browse files
authored
πŸ› fix(model-bank): fix ZenMux model IDs by adding provider prefixes (#11947)
fix(model-bank): fix ZenMux model IDs by adding provider prefixes
1 parent 9ce958d commit 17f8a5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€Žpackages/model-bank/src/aiModels/zenmux.tsβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const zenmuxChatModels: AIChatModelCard[] = [
2121
'GPT-5.2 is a flagship model for coding and agentic workflows with stronger reasoning and long-context performance.',
2222
displayName: 'GPT-5.2',
2323
enabled: true,
24-
id: 'gpt-5.2',
24+
id: 'openai/gpt-5.2',
2525
maxOutput: 128_000,
2626
pricing: {
2727
units: [
@@ -48,7 +48,7 @@ const zenmuxChatModels: AIChatModelCard[] = [
4848
description:
4949
'GPT-5.2 Pro: a smarter, more precise GPT-5.2 variant (Responses API only), suited for harder problems and longer multi-turn reasoning.',
5050
displayName: 'GPT-5.2 pro',
51-
id: 'gpt-5.2-pro',
51+
id: 'openai/gpt-5.2-pro',
5252
maxOutput: 128_000,
5353
pricing: {
5454
units: [
@@ -69,10 +69,10 @@ const zenmuxChatModels: AIChatModelCard[] = [
6969
},
7070
contextWindowTokens: 128_000,
7171
description:
72-
'GPT-5.2 Chat is the ChatGPT variant (chat-latest) for experiencing the newest conversation improvements.',
72+
'GPT-5.2 Chat is the ChatGPT variant for experiencing the newest conversation improvements.',
7373
displayName: 'GPT-5.2 Chat',
7474
enabled: true,
75-
id: 'gpt-5.2-chat-latest',
75+
id: 'openai/gpt-5.2-chat',
7676
maxOutput: 16_384,
7777
pricing: {
7878
units: [

0 commit comments

Comments
Β (0)