From d5d8d6c876be79c390cbea3f41e4309cd41aaca7 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:05:03 +0000 Subject: [PATCH] Remove warning log for unregister --- public/scripts/tool-calling.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/scripts/tool-calling.js b/public/scripts/tool-calling.js index 264649753..f1ce95e91 100644 --- a/public/scripts/tool-calling.js +++ b/public/scripts/tool-calling.js @@ -171,7 +171,6 @@ export class ToolManager { */ static unregisterFunctionTool(name) { if (!this.#tools.has(name)) { - console.warn(`No tool with the name "${name}" has been registered.`); return; }