diff --git a/public/scripts/tool-calling.js b/public/scripts/tool-calling.js index c19d1ac7a..964093bc3 100644 --- a/public/scripts/tool-calling.js +++ b/public/scripts/tool-calling.js @@ -213,7 +213,7 @@ export class ToolManager { static #applyToolCallDelta(target, delta) { for (const key in delta) { if (!delta.hasOwnProperty(key)) continue; - if (key === "__proto__" || key === "constructor") continue; + if (key === '__proto__' || key === 'constructor') continue; const deltaValue = delta[key]; const targetValue = target[key];