From 416c8e953af8412c405a5b8a2b35a7c620a75c54 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sat, 21 Jun 2025 22:44:22 -0300 Subject: [PATCH] feat(neovim): configure local llm models on avante --- config/nvim/lua/custom/plugins/init.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/config/nvim/lua/custom/plugins/init.lua b/config/nvim/lua/custom/plugins/init.lua index 2564807..0cccd1a 100644 --- a/config/nvim/lua/custom/plugins/init.lua +++ b/config/nvim/lua/custom/plugins/init.lua @@ -435,6 +435,24 @@ return { return hub and hub:get_active_servers_prompt() or '' end, providers = { + ['deepseek-r1-local'] = { + __inherited_from = 'ollama', + api_key_name = '', + endpoint = 'http://172.30.64.1:10000', + model = 'deepseek-r1:14b', + }, + ['gemma3-local'] = { + __inherited_from = 'ollama', + api_key_name = '', + endpoint = 'http://172.30.64.1:10000', + model = 'gemma3:12b', + }, + ['qwen3-local'] = { + __inherited_from = 'ollama', + api_key_name = '', + endpoint = 'http://172.30.64.1:10000', + model = 'qwen3:14b', + }, ['gemini-pro'] = { __inherited_from = 'gemini', model = 'gemini-2.5-pro-preview-05-06',