Delete obsolete tools.py

This commit is contained in:
2026-06-05 13:03:32 +00:00
parent 744d97b857
commit 58661c5ff3
-16
View File
@@ -1,16 +0,0 @@
"""Legacy tools module.
This file reexports 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"]