feat(agent): add explicit active-turn steering

This commit is contained in:
AaronZ345
2026-07-19 16:03:07 +08:00
parent 0c76d851cb
commit c4e5d11da9
21 changed files with 753 additions and 5 deletions

View File

@@ -8,6 +8,13 @@ from .cancel import (
CancelTokenRegistry,
get_cancel_registry,
)
from .steer import (
SteerInbox,
SteerRegistry,
SteerResult,
SteerStatus,
get_steer_registry,
)
__all__ = [
'Agent',
@@ -25,4 +32,9 @@ __all__ = [
'AgentCancelledError',
'CancelTokenRegistry',
'get_cancel_registry',
'SteerInbox',
'SteerRegistry',
'SteerResult',
'SteerStatus',
'get_steer_registry',
]