mirror of
https://github.com/usestrix/strix.git
synced 2026-08-21 02:45:31 +02:00
13 lines
545 B
Python
13 lines
545 B
Python
"""Strix multi-agent orchestration on top of OpenAI Agents SDK.
|
|
|
|
- :class:`AgentCoordinator` owns Strix-specific graph/status/wake state.
|
|
- SDK ``SQLiteSession`` owns per-agent conversation history and message
|
|
transport.
|
|
- :func:`run_with_continuation` wraps SDK ``Runner.run_streamed`` only
|
|
enough to keep interactive agents addressable between bounded runs.
|
|
|
|
Import deeply (for example, ``from strix.orchestration.coordinator
|
|
import AgentCoordinator``) so ``import strix.orchestration`` doesn't
|
|
drag every submodule's deps in eagerly.
|
|
"""
|