File size: 335 Bytes
a9e46a4 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Dual-mode agent system for BioinfoMCP.
This package introduces:
- BioinfoV1Executor: deterministic execution engine
- BioinfoT1Consultant: reflection and strategy engine
- SharedKnowledgeSpace: bridge for reports, insights, and pipeline configs
"""
from .orchestrator import DualModeAgentSystem
__all__ = ["DualModeAgentSystem"]
|