feat(neovim): upgrade avante configuration

This commit is contained in:
2025-06-16 20:42:27 -03:00
parent ab4f806081
commit b10b703500

View File

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