From e02a21e738041ea0f748e39d5c53209d4d2638d4 Mon Sep 17 00:00:00 2001 From: yetone <yetoneful@gmail.com> Date: Thu, 23 Jan 2025 11:54:38 +0800 Subject: [PATCH] Revert "docs: update notes on auto_suggestions (#1114)" (#1118) This reverts commit 396840a152be82354984b16f9a22cb425d0840d1. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b52b8b0..3fccb87 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,7 @@ _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", @@ -236,7 +237,7 @@ _See [config.lua#L9](./lua/avante/config.lua) for the full config_ timeout = 60000, -- Timeout in milliseconds }, behaviour = { - auto_suggestions = false, -- Experimental stage, currently not working as expected + auto_suggestions = false, -- Experimental stage auto_set_highlight_group = true, auto_set_keymaps = true, auto_apply_diff_after_generation = false,