From 0d3380936808a94afbab188c660b43bf12e7f4ea Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 1 Oct 2025 20:50:43 +0200 Subject: [PATCH] error log changed to warning. see #517 --- js/workers/model-worker-openai_comp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/workers/model-worker-openai_comp.js b/js/workers/model-worker-openai_comp.js index 26346caf..1ff79d26 100644 --- a/js/workers/model-worker-openai_comp.js +++ b/js/workers/model-worker-openai_comp.js @@ -120,7 +120,7 @@ self.onmessage = async function(event) { for (const parsedLine of parsedLines) { const { choices } = parsedLine; if (!choices || choices.length === 0) { - taLog.error("No choices found in parsed line: " + JSON.stringify(parsedLine)); + taLog.warning("No choices found in parsed line: " + JSON.stringify(parsedLine)); continue; } const { delta } = choices[0];