mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-06 16:58:24 +00:00
Add app/infra/ package with: - storage/ - repository adapters for runs, run_events, thread_meta - run_events/ - JSONL-based event store with factory - stream_bridge/ - memory and redis adapters for SSE streaming This layer provides the persistence abstractions used by the gateway services, replacing the old deerflow/persistence modules. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
410 B
Python
15 lines
410 B
Python
"""Storage-facing adapters owned by the app layer."""
|
|
|
|
from .run_events import AppRunEventStore
|
|
from .runs import FeedbackStoreAdapter, RunStoreAdapter, StorageRunObserver
|
|
from .thread_meta import ThreadMetaStorage, ThreadMetaStoreAdapter
|
|
|
|
__all__ = [
|
|
"AppRunEventStore",
|
|
"FeedbackStoreAdapter",
|
|
"RunStoreAdapter",
|
|
"StorageRunObserver",
|
|
"ThreadMetaStorage",
|
|
"ThreadMetaStoreAdapter",
|
|
]
|