mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-05-17 03:56:45 +00:00
Add gpt-5.5 model display name for Codex
This commit is contained in:
parent
110a1f506d
commit
791f2b077d
2 changed files with 2 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ import type { Provider, SessionSource, SessionParser, ParsedProviderCall } from
|
|||
|
||||
const modelDisplayNames: Record<string, string> = {
|
||||
'codex-auto-review': 'Codex Auto Review',
|
||||
'gpt-5.5': 'GPT-5.5',
|
||||
'gpt-5.4-mini': 'GPT-5.4 Mini',
|
||||
'gpt-5.4': 'GPT-5.4',
|
||||
'gpt-5.3-codex': 'GPT-5.3 Codex',
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ describe('provider registry', () => {
|
|||
expect(codex.modelDisplayName('gpt-5.4')).toBe('GPT-5.4')
|
||||
expect(codex.modelDisplayName('gpt-5.4-mini')).toBe('GPT-5.4 Mini')
|
||||
expect(codex.modelDisplayName('gpt-5.3-codex')).toBe('GPT-5.3 Codex')
|
||||
expect(codex.modelDisplayName('gpt-5.5')).toBe('GPT-5.5')
|
||||
})
|
||||
|
||||
it('claude model display names are human-readable', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue