Skip to content

Commit 8dd99d8

Browse files
committed
feat: add default o3-mini
1 parent b782559 commit 8dd99d8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

lua/gp/config.lua

+20
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)