Add delete_legacy.py
This commit is contained in:
@@ -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.")
|
||||
Reference in New Issue
Block a user