File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,16 @@ local config = {
121
121
-- system prompt (use this to specify the persona/role of the AI)
122
122
system_prompt = require (" gp.defaults" ).chat_system_prompt ,
123
123
},
124
+ {
125
+ provider = " openai" ,
126
+ name = " ChatGPT-o3-mini" ,
127
+ chat = true ,
128
+ command = false ,
129
+ -- string with model name or table with model name and parameters
130
+ model = { model = " o3-mini" , temperature = 1.1 , top_p = 1 },
131
+ -- system prompt (use this to specify the persona/role of the AI)
132
+ system_prompt = require (" gp.defaults" ).chat_system_prompt ,
133
+ },
124
134
{
125
135
provider = " copilot" ,
126
136
name = " ChatCopilot" ,
@@ -211,6 +221,16 @@ local config = {
211
221
-- system prompt (use this to specify the persona/role of the AI)
212
222
system_prompt = require (" gp.defaults" ).code_system_prompt ,
213
223
},
224
+ {
225
+ provider = " openai" ,
226
+ name = " CodeGPT-o3-mini" ,
227
+ chat = false ,
228
+ command = true ,
229
+ -- string with model name or table with model name and parameters
230
+ model = { model = " o3-mini" , temperature = 0.8 , top_p = 1 },
231
+ -- system prompt (use this to specify the persona/role of the AI)
232
+ system_prompt = require (" gp.defaults" ).code_system_prompt ,
233
+ },
214
234
{
215
235
provider = " openai" ,
216
236
name = " CodeGPT4o-mini" ,
You can’t perform that action at this time.
0 commit comments