mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
Implement the new _internal package structure for AstrBot runtime: - Add AstrbotOrchestrator with LSP, MCP, ACP, ABP protocol clients - Add AstrbotGateway server with WebSocket support - Add comprehensive test suite for runtime module - Add tools base module for MCP tools Implements bootstrap function using anyio task groups for concurrent protocol client initialization.
7 lines
212 B
Python
7 lines
212 B
Python
"""ACP module - AstrBot Communication Protocol client and server implementations."""
|
|
|
|
from .client import AstrbotAcpClient
|
|
from .server import AstrbotAcpServer
|
|
|
|
__all__ = ["AstrbotAcpClient", "AstrbotAcpServer"]
|