feat: upgrade neovim configuration and runtimes (#245)

Upgrade runtimes:

* `aqua:CircleCI-Public/circleci-cli`: from 0.1.32067 to 0.1.32367
* `aqua:astral-sh/uv`: from 0.7.8 to 0.7.13
* `aqua:aws/aws-cli`: from 2.27.23 to 2.27.35
* `aqua:bitwarden/clients` from cli-v2025.2.0 to cli-v2025.5.0
* `aqua:dagger/dagger`: from 0.18.9 to 0.18.10
* `aqua:eksctl-io/eksctl`: from 0.208.0 to 0.210.0
* `aqua:evilmartians/lefthook`: from 1.11.13 to 1.11.14
* `aqua:eza-community/eza`: from 0.21.3 to 0.21.4
* `aqua:github-cli`: from 2.73.0 to 2.74.1
* `aqua:go-task/task`: from 3.43.3 to 3.44.0
* `aqua:hashicorp/terraform`: from 1.12.1 to 1.12.2
* `aqua:helm/helm`: from 3.18.0 to 3.18.2
* `aqua:jj-vcs/jj`: from 0.29.0 to 0.30.0
* `aqua:pnpm/pnpm`: from 10.11.0 to 10.12.1
* `aqua:tilt-dev/tilt`: from 0.34.4 to 0.35.0
* `npm:@anthropic-ai/claude-code`: from 1.0.4 to 1.0.24
* `pipx:aider-chat`: from 0.83.2 to 0.84.0
* `pipx:vectorcode`: from 0.6.9 to 0.6.13
* `ubi:block/goose`: from 1.0.24 to 1.0.28
* `ubi:supabase/cli`: from 2.23.4 to 2.24.3

Upgrade `avante` configuration in `neovim`.

Reviewed-on: #245
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
This commit is contained in:
2025-06-17 13:19:19 +00:00
committed by João Paulo Dubas
parent 79289c0360
commit 056567e88b
2 changed files with 24 additions and 24 deletions

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',