Skip to content

Commit 9c32bce

Browse files
committed
fix shwoing correct model of editor
1 parent 0bfce45 commit 9c32bce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cli/src/utils/implementor-helpers.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const IMPLEMENTOR_AGENT_IDS = [
55
'editor-implementor-opus',
66
'editor-implementor-gemini',
77
'editor-implementor-gpt-5',
8+
'editor-implementor2',
89
'editor-implementor2-opus',
910
'editor-implementor2-gpt-5',
1011
'editor-implementor2-sonnet',
@@ -28,13 +29,16 @@ export const getImplementorDisplayName = (
2829
): string => {
2930
let baseName = 'Implementor'
3031
// Check editor-implementor2-* patterns first (more specific)
31-
if (agentType.includes('editor-implementor2-opus')) {
32+
if (
33+
agentType.includes('editor-implementor2-opus') ||
34+
agentType.includes('editor-implementor2')
35+
) {
3236
baseName = 'Opus'
3337
} else if (agentType.includes('editor-implementor2-gpt-5')) {
3438
baseName = 'GPT-5'
3539
} else if (agentType.includes('editor-implementor2-sonnet')) {
3640
baseName = 'Sonnet'
37-
// Then check editor-implementor-* patterns (less specific)
41+
// Then check editor-implementor-* patterns (less specific)
3842
} else if (agentType.includes('editor-implementor-opus')) {
3943
baseName = 'Opus'
4044
} else if (agentType.includes('editor-implementor-gemini')) {

0 commit comments

Comments
 (0)