This commit is contained in:
Christian Nieves
2025-06-17 21:35:41 +00:00
parent b5e0e2ebf5
commit 8345f91cc8

View File

@ -5,7 +5,7 @@ return {
"yetone/avante.nvim",
build = "make",
enable = true,
commit = "f9aa754", -- See g/avante-goose-users/c/h1eEYWBDW3k/m/6RGK2B89AAAJ
branch = "working",
dependencies = {
"nvim-treesitter/nvim-treesitter",
"stevearc/dressing.nvim",
@ -22,10 +22,10 @@ return {
-- These are the defaults
auto_start_backend = true, -- Whether to automatically start go/devai-api-http-proxy. If false you can use :AvanteGooseServerStart to start the server
auto_start_silent = true, -- Whether to have a silent auto start (don't log status messages)
model = 'goose-v3.5-s', -- Select model from go/goose-models.
model = "goose-v3.5-s", -- Select model from go/goose-models.
temperature = 0.1, -- Model temperature
max_decoder_steps = 8192, -- Maximum decoder steps (This affects the token limit of the output. More decoder steps -> higher limit in output tokens)
endpoint = 'http://localhost:8080/predict', -- Endpoint to start/listen to go/devai-api-http-proxy
endpoint = "http://localhost:8080/predict", -- Endpoint to start/listen to go/devai-api-http-proxy
debug = false, -- Enables debug mode (outputs lots of logs for troubleshooting issues)
debug_backend = false, -- Whether to start the backend in debug mode. This logs backend output information under stdpath('cache')/devai-http-wrapper.log
},