mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
revert rag_storage.py changes
This commit is contained in:
@@ -150,14 +150,10 @@ class RAGStorage(BaseRAGStorage):
|
|||||||
|
|
||||||
def reset(self) -> None:
|
def reset(self) -> None:
|
||||||
try:
|
try:
|
||||||
# First reset ChromaDB's internal state
|
shutil.rmtree(f"{db_storage_path()}/{self.type}")
|
||||||
if self.app:
|
if self.app:
|
||||||
self.app.reset()
|
self.app.reset()
|
||||||
|
|
||||||
# Then remove the directory
|
|
||||||
storage_path = f"{db_storage_path()}/{self.type}"
|
|
||||||
if os.path.exists(storage_path):
|
|
||||||
shutil.rmtree(storage_path)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
if "attempt to write a readonly database" in str(e):
|
if "attempt to write a readonly database" in str(e):
|
||||||
# Ignore this specific error
|
# Ignore this specific error
|
||||||
|
|||||||
Reference in New Issue
Block a user