error log changed to warning. see #517

This commit is contained in:
mic 2025-10-01 20:50:43 +02:00
parent 08b66b0495
commit 0d33809368

View file

@ -120,7 +120,7 @@ self.onmessage = async function(event) {
for (const parsedLine of parsedLines) { for (const parsedLine of parsedLines) {
const { choices } = parsedLine; const { choices } = parsedLine;
if (!choices || choices.length === 0) { 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; continue;
} }
const { delta } = choices[0]; const { delta } = choices[0];