From 5ac934f2283d20ff805467d79ca6b4727eb0101e Mon Sep 17 00:00:00 2001 From: yetone Date: Sun, 2 Feb 2025 02:29:41 +0800 Subject: [PATCH] chores: remove debug log (#1160) --- lua/avante/providers/openai.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/avante/providers/openai.lua b/lua/avante/providers/openai.lua index fe3eddd..59942d3 100644 --- a/lua/avante/providers/openai.lua +++ b/lua/avante/providers/openai.lua @@ -115,7 +115,6 @@ M.parse_response = function(ctx, data_stream, _, opts) if data_stream:match('"delta":') then ---@type OpenAIChatResponse local jsn = vim.json.decode(data_stream) - Utils.debug("jsn", jsn) if jsn.choices and jsn.choices[1] then local choice = jsn.choices[1] if choice.finish_reason == "stop" or choice.finish_reason == "eos_token" then