From 2b23ba0cc9e0051aeb08f7b6759add750f16c49a Mon Sep 17 00:00:00 2001 From: finn Date: Tue, 12 May 2026 22:44:09 -0700 Subject: [PATCH] fix append --- lua/plugins/avante_202605.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lua/plugins/avante_202605.lua b/lua/plugins/avante_202605.lua index 0364f3c..fe1a8b0 100644 --- a/lua/plugins/avante_202605.lua +++ b/lua/plugins/avante_202605.lua @@ -17,6 +17,19 @@ return { provider = "deepseek", providers = { + deepseek_rules = { + __inherited_from = "openai", + api_key_name = "DEEPSEEK_API_KEY", + endpoint = "https://api.deepseek.com", + -- model = "deepseek-chat", ds claims this endpoint is maximally compatible but being deprecated eventually + model = "deepseek-v4-flash", + disable_tools = false, + extra_request_body = { + ["thinking"] = { + ["type"] = "disabled", + }, + }, + }, deepseek = { __inherited_from = "openai", api_key_name = "DEEPSEEK_API_KEY",