Skip to content

Commit 76ff7ce

Browse files
feat: add new model options to selection menu in index.js
1 parent 82524a4 commit 76ff7ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,11 @@ const gitExtension = (_args) => {
188188
name: 'value',
189189
message: 'Select a model',
190190
choices: [
191+
{ title: 'gpt-4o-mini (Recommended)', value: 'gpt-4o-mini' },
191192
{ title: 'gpt-4o', value: 'gpt-4o' },
192-
{ title: 'gpt-3.5-turbo-instruct', value: 'gpt-3.5-turbo-instruct' },
193-
{ title: 'gpt-4-turbo', value: 'gpt-4-turbo' },
194-
{ title: 'gpt-4', value: 'gpt-4' }, // New model added
193+
{ title: 'gpt-4.1-nano (Latest Fast)', value: 'gpt-4.1-nano' },
194+
{ title: 'gpt-4.1-mini (Latest)', value: 'gpt-4.1-mini' },
195+
{ title: 'gpt-3.5-turbo (Legacy)', value: 'gpt-3.5-turbo' },
195196
],
196197
initial: 0,
197198
})

0 commit comments

Comments
 (0)