From 396840a152be82354984b16f9a22cb425d0840d1 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Tue, 21 Jan 2025 23:00:19 -0500 Subject: [PATCH] docs: update notes on auto_suggestions (#1114) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3fccb87..b52b8b0 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,6 @@ _See [config.lua#L9](./lua/avante/config.lua) for the full config_ { ---@alias Provider "claude" | "openai" | "azure" | "gemini" | "cohere" | "copilot" | string provider = "claude", -- Recommend using Claude - auto_suggestions_provider = "claude", -- Since auto-suggestions are a high-frequency operation and therefore expensive, it is recommended to specify an inexpensive provider or even a free provider: copilot claude = { endpoint = "https://api.anthropic.com", model = "claude-3-5-sonnet-20241022", @@ -237,7 +236,7 @@ _See [config.lua#L9](./lua/avante/config.lua) for the full config_ timeout = 60000, -- Timeout in milliseconds }, behaviour = { - auto_suggestions = false, -- Experimental stage + auto_suggestions = false, -- Experimental stage, currently not working as expected auto_set_highlight_group = true, auto_set_keymaps = true, auto_apply_diff_after_generation = false,