Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update Claude model versions to latest #233

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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