@@ -40,7 +40,7 @@ local config = {
40
40
chat = true ,
41
41
command = false ,
42
42
-- string with model name or table with model name and parameters
43
- model = { model = " gpt-4-1106-preview " , temperature = 1.1 , top_p = 1 },
43
+ model = { model = " gpt-4o " , temperature = 1.1 , top_p = 1 },
44
44
-- system prompt (use this to specify the persona/role of the AI)
45
45
system_prompt = " You are a general AI assistant.\n\n "
46
46
.. " The user provided the additional info about how they would like you to respond:\n\n "
@@ -57,7 +57,7 @@ local config = {
57
57
chat = true ,
58
58
command = false ,
59
59
-- string with model name or table with model name and parameters
60
- model = { model = " gpt-3.5-turbo-1106 " , temperature = 1.1 , top_p = 1 },
60
+ model = { model = " gpt-3.5-turbo" , temperature = 1.1 , top_p = 1 },
61
61
-- system prompt (use this to specify the persona/role of the AI)
62
62
system_prompt = " You are a general AI assistant.\n\n "
63
63
.. " The user provided the additional info about how they would like you to respond:\n\n "
@@ -74,7 +74,7 @@ local config = {
74
74
chat = false ,
75
75
command = true ,
76
76
-- string with model name or table with model name and parameters
77
- model = { model = " gpt-4-1106-preview " , temperature = 0.8 , top_p = 1 },
77
+ model = { model = " gpt-4o " , temperature = 0.8 , top_p = 1 },
78
78
-- system prompt (use this to specify the persona/role of the AI)
79
79
system_prompt = " You are an AI working as a code editor.\n\n "
80
80
.. " Please AVOID COMMENTARY OUTSIDE OF THE SNIPPET RESPONSE.\n "
@@ -85,7 +85,7 @@ local config = {
85
85
chat = false ,
86
86
command = true ,
87
87
-- string with model name or table with model name and parameters
88
- model = { model = " gpt-3.5-turbo-1106 " , temperature = 0.8 , top_p = 1 },
88
+ model = { model = " gpt-3.5-turbo" , temperature = 0.8 , top_p = 1 },
89
89
-- system prompt (use this to specify the persona/role of the AI)
90
90
system_prompt = " You are an AI working as a code editor.\n\n "
91
91
.. " Please AVOID COMMENTARY OUTSIDE OF THE SNIPPET RESPONSE.\n "
0 commit comments