We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82524a4 commit 76ff7ceCopy full SHA for 76ff7ce
index.js
@@ -188,10 +188,11 @@ const gitExtension = (_args) => {
188
name: 'value',
189
message: 'Select a model',
190
choices: [
191
+ { title: 'gpt-4o-mini (Recommended)', value: 'gpt-4o-mini' },
192
{ title: 'gpt-4o', value: 'gpt-4o' },
- { 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
+ { title: 'gpt-4.1-nano (Latest Fast)', value: 'gpt-4.1-nano' },
+ { title: 'gpt-4.1-mini (Latest)', value: 'gpt-4.1-mini' },
195
+ { title: 'gpt-3.5-turbo (Legacy)', value: 'gpt-3.5-turbo' },
196
],
197
initial: 0,
198
})
0 commit comments