mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-07 17:28:21 +00:00
Phase 2-A prerequisite for event storage: adds the unified run event stream interface (RunEventStore) with an in-memory implementation, RunEventsConfig, gateway integration, and comprehensive tests (27 cases). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
182 B
Python
5 lines
182 B
Python
from deerflow.runtime.events.store.base import RunEventStore
|
|
from deerflow.runtime.events.store.memory import MemoryRunEventStore
|
|
|
|
__all__ = ["MemoryRunEventStore", "RunEventStore"]
|