diff --git a/delete_legacy.py b/delete_legacy.py new file mode 100644 index 0000000..a503917 --- /dev/null +++ b/delete_legacy.py @@ -0,0 +1,20 @@ +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