agent-Specialization/modules/sub_agent/__init__.py
JOJO 7b683ab390 fix(sub_agent): export TERMINAL_STATUSES in package __init__
fix(api_client): classify httpx.RemoteProtocolError as connection_error
2026-06-20 12:15:18 +08:00

10 lines
366 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""子智能体Sub-Agent模块包。
子智能体现在作为主进程内的 asyncio.Task 运行,所有实际工具调用都通过
主 WebTerminal 执行,因此自然复用主进程的宿主机沙箱 / Docker 容器链路。
"""
from modules.sub_agent.manager import SubAgentManager, TERMINAL_STATUSES
__all__ = ["SubAgentManager", "TERMINAL_STATUSES"]