Skip to content

Commit 1be358d

Browse files
committed
chore: merge main
2 parents 01dc9f7 + b32327f commit 1be358d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Voice commands (`:GpWhisper*`) depend on `SoX` (Sound eXchange) to handle audio
212212
Below is a linked snippet with the default values, but I suggest starting with minimal config possible (just `openai_api_key` if you don't have `OPENAI_API_KEY` env set up). Defaults change over time to improve things, options might get deprecated and so on - it's better to change only things where the default doesn't fit your needs.
213213

214214
<!-- README_REFERENCE_MARKER_REPLACE_NEXT_LINE -->
215-
https://github.com/Robitx/gp.nvim/blob/b7efad9f7d12bbc089d467aa33f51e687fb6100a/lua/gp/config.lua#L10-L610
215+
https://github.com/Robitx/gp.nvim/blob/8dd99d85adfcfcb326f85a1f15bcd254f628df59/lua/gp/config.lua#L10-L627
216216

217217
# Usage
218218

doc/gp.nvim.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ options might get deprecated and so on - it’s better to change only things
252252
where the default doesn’t fit your needs.
253253

254254

255-
https://github.com/Robitx/gp.nvim/blob/b7efad9f7d12bbc089d467aa33f51e687fb6100a/lua/gp/config.lua#L10-L610
255+
https://github.com/Robitx/gp.nvim/blob/8dd99d85adfcfcb326f85a1f15bcd254f628df59/lua/gp/config.lua#L10-L627
256256

257257

258258
==============================================================================

lua/gp/config.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,21 +163,21 @@ local config = {
163163
},
164164
{
165165
provider = "anthropic",
166-
name = "ChatClaude-3-5-Sonnet",
166+
name = "ChatClaude-3-7-Sonnet",
167167
chat = true,
168168
command = false,
169169
-- string with model name or table with model name and parameters
170-
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
170+
model = { model = "claude-3-7-sonnet-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
},
174174
{
175175
provider = "anthropic",
176-
name = "ChatClaude-3-Haiku",
176+
name = "ChatClaude-3-5-Haiku",
177177
chat = true,
178178
command = false,
179179
-- string with model name or table with model name and parameters
180-
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
180+
model = { model = "claude-3-5-haiku-latest", temperature = 0.8, top_p = 1 },
181181
-- system prompt (use this to specify the persona/role of the AI)
182182
system_prompt = require("gp.defaults").chat_system_prompt,
183183
},
@@ -271,20 +271,20 @@ local config = {
271271
},
272272
{
273273
provider = "anthropic",
274-
name = "CodeClaude-3-5-Sonnet",
274+
name = "CodeClaude-3-7-Sonnet",
275275
chat = false,
276276
command = true,
277277
-- string with model name or table with model name and parameters
278-
model = { model = "claude-3-5-sonnet-20240620", temperature = 0.8, top_p = 1 },
278+
model = { model = "claude-3-7-sonnet-latest", temperature = 0.8, top_p = 1 },
279279
system_prompt = require("gp.defaults").code_system_prompt,
280280
},
281281
{
282282
provider = "anthropic",
283-
name = "CodeClaude-3-Haiku",
283+
name = "CodeClaude-3-5-Haiku",
284284
chat = false,
285285
command = true,
286286
-- string with model name or table with model name and parameters
287-
model = { model = "claude-3-haiku-20240307", temperature = 0.8, top_p = 1 },
287+
model = { model = "claude-3-5-haiku-latest", temperature = 0.8, top_p = 1 },
288288
system_prompt = require("gp.defaults").code_system_prompt,
289289
},
290290
{

0 commit comments

Comments
 (0)