From ba12839f1db55a99741e5d1a9934d18427984161 Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 22 Oct 2025 22:58:23 +0200 Subject: [PATCH] method name fixed. see #535 --- 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 1ff79d26..68398131 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.warning("No choices found in parsed line: " + JSON.stringify(parsedLine)); + taLog.warn("No choices found in parsed line: " + JSON.stringify(parsedLine)); continue; } const { delta } = choices[0];