Files
task-6a02e23da6fe2e4ac16acf65/delete_legacy.py
T
2026-06-05 12:42:26 +00:00

20 lines
377 B
Python

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.")