ReMe/reme2/component/file_store/__init__.py
huangsen 701f8f6e3a
Some checks are pending
Pre-commit / run (ubuntu-latest) (push) Waiting to run
refactor(file_store): simplify file store architecture and remove unused features
Remove SqliteFileStore backend and simplify the base file store
interface. The file store now focuses on in-memory + JSONL persistence
for the (file → chunks) graph with reduced complexity.

BREAKING CHANGE: SqliteFileStore is removed, only LocalFileStore remains
available.
2026-05-11 20:57:10 +08:00

14 lines
321 B
Python

"""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",
]