fix: set default auto suggestions provider to nil (#1951)

This commit is contained in:
yetone
2025-05-01 02:50:01 +08:00
committed by GitHub
parent 99a2e35ff3
commit 32ca1ed38e
4 changed files with 7 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ M._defaults = {
-- 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
-- Of course, you can reduce the request frequency by increasing `suggestion.debounce`.
auto_suggestions_provider = "claude",
auto_suggestions_provider = nil,
cursor_applying_provider = nil,
memory_summary_provider = nil,
---@alias Tokenizer "tiktoken" | "hf"