"""File store module. In-memory + JSONL backend for the (file → chunks) graph. Subclass `BaseFileStore` to add other backends; only `LocalFileStore` is shipped today. """ from .base_file_store import BaseFileStore from .local_file_store import LocalFileStore __all__ = [ "BaseFileStore", "LocalFileStore", ]