24 lines
416 B
Python
24 lines
416 B
Python
|
|
"""Swarm 核心模块"""
|
||
|
|
|
||
|
|
from .agent_adapter import (
|
||
|
|
CLIPluginAdapter,
|
||
|
|
Task,
|
||
|
|
Result,
|
||
|
|
AgentCapabilities,
|
||
|
|
AdapterError,
|
||
|
|
AdapterConnectionError,
|
||
|
|
AdapterExecutionError,
|
||
|
|
AdapterTimeoutError
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"CLIPluginAdapter",
|
||
|
|
"Task",
|
||
|
|
"Result",
|
||
|
|
"AgentCapabilities",
|
||
|
|
"AdapterError",
|
||
|
|
"AdapterConnectionError",
|
||
|
|
"AdapterExecutionError",
|
||
|
|
"AdapterTimeoutError"
|
||
|
|
]
|