From 8a683b053bdb5cd871d9ba6699311aae04fb616e Mon Sep 17 00:00:00 2001 From: Aaron Pham <contact@aarnphm.xyz> Date: Wed, 28 Aug 2024 19:56:11 -0400 Subject: [PATCH] fix(style): reformat (#344) Signed-off-by: Aaron Pham <contact@aarnphm.xyz> --- lua/avante/providers/openai.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/avante/providers/openai.lua b/lua/avante/providers/openai.lua index aa37382..72546ce 100644 --- a/lua/avante/providers/openai.lua +++ b/lua/avante/providers/openai.lua @@ -96,7 +96,7 @@ M.parse_response = function(data_stream, _, opts) opts.on_complete(nil) elseif choice.delta.content then if choice.delta.content ~= vim.NIL then - opts.on_chunk(choice.delta.content) + opts.on_chunk(choice.delta.content) end end end