File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,16 @@ local config = {
121121 -- system prompt (use this to specify the persona/role of the AI)
122122 system_prompt = require (" gp.defaults" ).chat_system_prompt ,
123123 },
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+ },
124134 {
125135 provider = " copilot" ,
126136 name = " ChatCopilot" ,
@@ -211,6 +221,16 @@ local config = {
211221 -- system prompt (use this to specify the persona/role of the AI)
212222 system_prompt = require (" gp.defaults" ).code_system_prompt ,
213223 },
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+ },
214234 {
215235 provider = " openai" ,
216236 name = " CodeGPT4o-mini" ,
You can’t perform that action at this time.
0 commit comments