mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-24 00:51:43 +00:00
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",
|
|
]
|