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,