Skip to content

Commit c2453ab

Browse files
authored
fix: use claude-3-7-sonnet-latest & claude-3-5-haiku-latest
1 parent c3c21c4 commit c2453ab

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lua/gp/config.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -153,21 +153,21 @@ local config = {
153153
},
154154
{
155155
provider = "anthropic",
156-
name = "ChatClaude-3-5-Sonnet",
156+
name = "ChatClaude-3-7-Sonnet",
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-latest", temperature = 0.8, top_p = 1 },
160+
model = { model = "claude-3-7-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
},
164164
{
165165
provider = "anthropic",
166-
name = "ChatClaude-3-Haiku",
166+
name = "ChatClaude-3-5-Haiku",
167167
chat = true,
168168
command = false,
169169
-- string with model name or table with model name and parameters
170-
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
170+
model = { model = "claude-3-5-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
},
@@ -251,20 +251,20 @@ local config = {
251251
},
252252
{
253253
provider = "anthropic",
254-
name = "CodeClaude-3-5-Sonnet",
254+
name = "CodeClaude-3-7-Sonnet",
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-latest", temperature = 0.8, top_p = 1 },
258+
model = { model = "claude-3-7-sonnet-latest", temperature = 0.8, top_p = 1 },
259259
system_prompt = require("gp.defaults").code_system_prompt,
260260
},
261261
{
262262
provider = "anthropic",
263-
name = "CodeClaude-3-Haiku",
263+
name = "CodeClaude-3-5-Haiku",
264264
chat = false,
265265
command = true,
266266
-- string with model name or table with model name and parameters
267-
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
267+
model = { model = "claude-3-5-haiku-latest", temperature = 0.8, top_p = 1 },
268268
system_prompt = require("gp.defaults").code_system_prompt,
269269
},
270270
{

0 commit comments

Comments
 (0)