From 25e1604cda3726731c9790b36c1483d1db2b613c Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 30 Apr 2025 09:36:10 +0800 Subject: [PATCH] feat: avante.nvim - add qwen3 --- home/base/tui/editors/neovim/nvim/lua/plugins/avante.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/base/tui/editors/neovim/nvim/lua/plugins/avante.lua b/home/base/tui/editors/neovim/nvim/lua/plugins/avante.lua index 18b00b85..471b9305 100644 --- a/home/base/tui/editors/neovim/nvim/lua/plugins/avante.lua +++ b/home/base/tui/editors/neovim/nvim/lua/plugins/avante.lua @@ -54,6 +54,13 @@ return { endpoint = "https://api.deepseek.com", model = "deepseek-reasoner", }, + aliyun_qwen3 = { + __inherited_from = "openai", + api_key_name = "DASHSCOPE_API_KEY", + endpoint = "https://dashscope.aliyuncs.com/compatible-mode/v1", + -- model = "qwen-coder-plus-latest", + model = "qwen3-235b-a22b", + }, }, -- WARNING: Since auto-suggestions are a high-frequency operation and therefore expensive, -- currently designating it as `copilot` provider is dangerous because: https://github.com/yetone/avante.nvim/issues/1048