From 58661c5ff3195d3b60b954465e174b6995bfe143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Fri, 5 Jun 2026 13:03:32 +0000 Subject: [PATCH] Delete obsolete tools.py --- tools.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 tools.py diff --git a/tools.py b/tools.py deleted file mode 100644 index d1f7a16..0000000 --- a/tools.py +++ /dev/null @@ -1,16 +0,0 @@ -"""Legacy tools module. - -This file re‑exports the tools from :mod:`src.tools` and then removes -itself to avoid namespace clashes with the new package layout. -""" - -from src.tools import search_knowledge_base, add_to_knowledge_base # noqa: F401 - -# Remove the legacy file after import -import os -try: - os.remove(__file__) -except Exception: - pass - -__all__ = ["search_knowledge_base", "add_to_knowledge_base"] \ No newline at end of file