From 63724a2b383aaa2bcaa5ca4009f65062f45c39cd Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Wed, 2 Oct 2024 01:54:47 +0300 Subject: [PATCH] eslint update --- public/scripts/tool-calling.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];