20 lines
377 B
Python
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.") |