Skip to content

Commit 9c983e8

Browse files
LeviBorodenkoLevi BorodenkoRobitx
authored
Update Claude model versions to latest (#233)
Co-authored-by: Levi Borodenko <levi.borodenko@smart-steel-technologies.com> Co-authored-by: Tibor Schmidt <robitx@gmail.com>
1 parent 814f7ba commit 9c983e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lua/gp/config.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ local config = {
157157
chat = true,
158158
command = false,
159159
-- string with model name or table with model name and parameters
160-
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
160+
model = { model = "claude-3-5-sonnet-latest", temperature = 0.8, top_p = 1 },
161161
-- system prompt (use this to specify the persona/role of the AI)
162162
system_prompt = require("gp.defaults").chat_system_prompt,
163163
},
@@ -167,7 +167,7 @@ local config = {
167167
chat = true,
168168
command = false,
169169
-- string with model name or table with model name and parameters
170-
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
170+
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
171171
-- system prompt (use this to specify the persona/role of the AI)
172172
system_prompt = require("gp.defaults").chat_system_prompt,
173173
},
@@ -255,7 +255,7 @@ local config = {
255255
chat = false,
256256
command = true,
257257
-- string with model name or table with model name and parameters
258-
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
258+
model = { model = "claude-3-5-sonnet-latest", temperature = 0.8, top_p = 1 },
259259
system_prompt = require("gp.defaults").code_system_prompt,
260260
},
261261
{
@@ -264,7 +264,7 @@ local config = {
264264
chat = false,
265265
command = true,
266266
-- string with model name or table with model name and parameters
267-
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
267+
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
268268
system_prompt = require("gp.defaults").code_system_prompt,
269269
},
270270
{

0 commit comments

Comments
 (0)