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];