Skip to content

Commit

Permalink
Update Claude model versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi Borodenko committed Dec 13, 2024
1 parent 2372d53 commit d69ef51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/gp/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ local config = {
chat = true,
command = false,
-- string with model name or table with model name and parameters
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
model = { model = "claude-3-5-sonnet-latest", temperature = 0.8, top_p = 1 },
-- system prompt (use this to specify the persona/role of the AI)
system_prompt = require("gp.defaults").chat_system_prompt,
},
Expand All @@ -167,7 +167,7 @@ local config = {
chat = true,
command = false,
-- string with model name or table with model name and parameters
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
-- system prompt (use this to specify the persona/role of the AI)
system_prompt = require("gp.defaults").chat_system_prompt,
},
Expand Down Expand Up @@ -255,7 +255,7 @@ local config = {
chat = false,
command = true,
-- string with model name or table with model name and parameters
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
model = { model = "claude-3-5-sonnet-latest", temperature = 0.8, top_p = 1 },
system_prompt = require("gp.defaults").code_system_prompt,
},
{
Expand All @@ -264,7 +264,7 @@ local config = {
chat = false,
command = true,
-- string with model name or table with model name and parameters
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
model = { model = "claude-3-haiku-latest", temperature = 0.8, top_p = 1 },
system_prompt = require("gp.defaults").code_system_prompt,
},
{
Expand Down

0 comments on commit d69ef51

Please sign in to comment.