feat: upgrade neovim configuration and runtimes #245

Merged
joao.dubas merged 3 commits from jpd-feat-upgrade-dependencies into main 2025-06-17 13:19:19 +00:00
Showing only changes of commit b10b703500 - Show all commits

View File

@ -434,24 +434,24 @@ return {
local hub = require('mcphub').get_hub_instance()
return hub and hub:get_active_servers_prompt() or ''
end,
vendors = {
providers = {
['gemini-pro'] = {
__inherited_from = 'gemini',
model = 'gemini-2.5-pro-preview-05-06',
timeout = 600000,
max_tokens = 40960,
extra_request_body = { max_tokens = 40960 },
},
['gemini-flash'] = {
__inherited_from = 'gemini',
model = 'gemini-2.0-flash',
timeout = 600000,
max_tokens = 20480,
extra_request_body = { max_tokens = 20480 },
},
['claude-sonnet-4'] = {
__inherited_from = 'claude',
model = 'claude-sonnet-4-20250514',
timeout = 600000,
max_tokens = 20480,
extra_request_body = { max_tokens = 20480 },
},
groq = {
__inherited_from = 'openai',