NotebookLM / persistence /__init__.py
internomega-terrablue
Save notebook
d1e6709
raw
history blame contribute delete
196 Bytes
"""Persistence Layer — storage services."""
from persistence.vector_store import VectorStore
from persistence.storage_service import StorageService
__all__ = ["VectorStore", "StorageService"]