update some plugins

This commit is contained in:
chaptersix 2025-03-22 18:51:50 -05:00
parent f0396f550a
commit 80880cb39d
4 changed files with 74 additions and 8 deletions

View file

@ -9,12 +9,23 @@ return {
provider = 'openai',
openai = {
endpoint = 'https://api.openai.com/v1',
model = 'gpt-4o', -- your desired model (or use gpt-4o, etc.)
model = 'o3-mini', -- your desired model (or use gpt-4o, etc.)
timeout = 30000, -- timeout in milliseconds
temperature = 0, -- adjust if needed
max_tokens = 4096,
max_tokens = claude,
-- reasoning_effort = "high" -- only supported for reasoning models (o1, etc.)
},
claude = {
endpoint = 'https://api.anthropic.com',
model = 'claude-3-5-sonnet-20241022',
timeout = 30000, -- Timeout in milliseconds
temperature = 0,
--max_tokens = 20000,
disable_tools = true, -- disable tools!
},
behaviour = {
enable_claude_text_editor_tool_mode = true,
},
},
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
build = 'make',

View file

@ -0,0 +1,18 @@
return { -- Virtual Environment Selector
{
'linux-cultist/venv-selector.nvim',
dependencies = { 'neovim/nvim-lspconfig', 'nvim-telescope/telescope.nvim', 'mfussenegger/nvim-dap-python' },
opts = {
name = {
'venv',
'.venv',
'env',
'.env',
},
},
keys = {
-- Keymap to open venv selector
{ '<leader>vs', '<cmd>VenvSelect<cr>', desc = 'Select VirtualEnv' },
},
},
}