mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
Some checks are pending
Pre-commit / run (ubuntu-latest) (push) Waiting to run
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.
14 lines
321 B
Python
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",
|
|
]
|