| """ | |
| Sovereign LLM Engine β Daemon Package | |
| Part of SOVEREIGN PYTHON LLM ENGINE | |
| Exports: | |
| PythonDaemon β asyncio TCP daemon with handler registry | |
| DaemonTask β inbound task dataclass | |
| DaemonHandler β handler Protocol | |
| DaemonResponse β outbound response dataclass | |
| send_task β client-side coroutine to send one task | |
| ping_daemon β client-side health check (PING/PONG) | |
| Swarm β parallel swarm coordinator | |
| SwarmResult β swarm operation result dataclass | |
| TaskOutcome β single task outcome within a swarm | |
| """ | |
| from .python_daemon import ( | |
| DaemonHandler, | |
| DaemonResponse, | |
| DaemonTask, | |
| PythonDaemon, | |
| ping_daemon, | |
| send_task, | |
| ) | |
| from .swarm import ( | |
| Swarm, | |
| SwarmResult, | |
| TaskOutcome, | |
| ) | |
| __all__ = [ | |
| # Daemon | |
| "PythonDaemon", | |
| "DaemonTask", | |
| "DaemonHandler", | |
| "DaemonResponse", | |
| "send_task", | |
| "ping_daemon", | |
| # Swarm | |
| "Swarm", | |
| "SwarmResult", | |
| "TaskOutcome", | |
| ] | |