From 615ccdbef36589cc5ca498b94174bfc4a7368fcc Mon Sep 17 00:00:00 2001 From: yetone Date: Sun, 2 Mar 2025 01:19:25 +0800 Subject: [PATCH] fix: typo (#1451) --- lua/avante/llm_tools.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/avante/llm_tools.lua b/lua/avante/llm_tools.lua index ab35093..ef0e0a4 100644 --- a/lua/avante/llm_tools.lua +++ b/lua/avante/llm_tools.lua @@ -337,7 +337,7 @@ function M.web_search(opts, on_log) elseif provider_type == "google" then local engine_id = os.getenv(search_engine.engine_id_name) if engine_id == nil or engine_id == "" then - return nil, "Environment variable " .. search_engine.engine_id_namee .. " is not set" + return nil, "Environment variable " .. search_engine.engine_id_name .. " is not set" end local query_params = vim.tbl_deep_extend("force", { key = api_key,