diff --git a/report_analyst/core/storage/llama_store.py b/report_analyst/core/storage/llama_store.py index c53bb357..042e11c5 100644 --- a/report_analyst/core/storage/llama_store.py +++ b/report_analyst/core/storage/llama_store.py @@ -27,6 +27,7 @@ def __init__(self, storage_path: Path): Args: storage_path (Path): Path to store vector store files """ + super().__init__() self.storage_path = Path(storage_path).resolve() self.store = None self.storage_context = None