che-astronvim-config/lua/plugins/avante-nvim.lua

22 lines
565 B
Lua

if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
return {
{ -- further customize the options set by the community
"yetone/avante.nvim",
opts = {
provider = "deepseek",
auto_suggestions_provider = "deepseek",
providers = {
deepseek = {
__inherited_from = "openai",
api_key_name = "DEEPSEEK_API_KEY",
endpoint = "https://api.deepseek.com",
model = "deepseek-coder",
max_tokens = 8192,
-- disable_tools = true,
},
},
},
},
}