File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,11 @@ local config = {
101
101
},
102
102
{
103
103
provider = " openai" ,
104
- name = " ChatGPT3-5 " ,
104
+ name = " ChatGPT4o-mini " ,
105
105
chat = true ,
106
106
command = false ,
107
107
-- 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 },
109
109
-- system prompt (use this to specify the persona/role of the AI)
110
110
system_prompt = require (" gp.defaults" ).chat_system_prompt ,
111
111
},
@@ -199,13 +199,13 @@ local config = {
199
199
},
200
200
{
201
201
provider = " openai" ,
202
- name = " CodeGPT3-5 " ,
202
+ name = " CodeGPT4o-mini " ,
203
203
chat = false ,
204
204
command = true ,
205
205
-- 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 },
207
207
-- 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. \n START AND END YOUR ANSWER WITH: \n\n ``` " ,
209
209
},
210
210
{
211
211
provider = " copilot" ,
You can’t perform that action at this time.
0 commit comments