Skip to content

Commit a062dbe

Browse files
committed
feat: replace gpt3.5 agents with gpt-4o-mini
1 parent 4812a00 commit a062dbe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lua/gp/config.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ local config = {
101101
},
102102
{
103103
provider = "openai",
104-
name = "ChatGPT3-5",
104+
name = "ChatGPT4o-mini",
105105
chat = true,
106106
command = false,
107107
-- string with model name or table with model name and parameters
108-
model = { model = "gpt-3.5-turbo", temperature = 1.1, top_p = 1 },
108+
model = { model = "gpt-4o-mini", temperature = 1.1, top_p = 1 },
109109
-- system prompt (use this to specify the persona/role of the AI)
110110
system_prompt = require("gp.defaults").chat_system_prompt,
111111
},
@@ -199,13 +199,13 @@ local config = {
199199
},
200200
{
201201
provider = "openai",
202-
name = "CodeGPT3-5",
202+
name = "CodeGPT4o-mini",
203203
chat = false,
204204
command = true,
205205
-- string with model name or table with model name and parameters
206-
model = { model = "gpt-3.5-turbo", temperature = 0.8, top_p = 1 },
206+
model = { model = "gpt-4o-mini", temperature = 0.7, top_p = 1 },
207207
-- system prompt (use this to specify the persona/role of the AI)
208-
system_prompt = require("gp.defaults").code_system_prompt,
208+
system_prompt = "Please return ONLY code snippets.\nSTART AND END YOUR ANSWER WITH:\n\n```",
209209
},
210210
{
211211
provider = "copilot",

0 commit comments

Comments
 (0)