diff --git a/delete_legacy.py b/delete_legacy.py deleted file mode 100644 index a503917..0000000 --- a/delete_legacy.py +++ /dev/null @@ -1,20 +0,0 @@ -import os -legacy_files = [ - 'agent.py', - 'chunker.py', - 'cli.py', - 'config.py', - 'init_loader.py', - 'main.py', - 'qdrant_store.py', - 'rag_tools.py', - 'tools.py', - 'vector_store.py' -] -for f in legacy_files: - try: - os.remove(f) - print(f"Deleted {f}") - except FileNotFoundError: - pass -print("Legacy files cleanup complete.") \ No newline at end of file