This commit is contained in:
2026-07-06 23:44:18 +08:00
parent a453d9e6ba
commit d899b875ce
23 changed files with 3274 additions and 51 deletions
+25
View File
@@ -0,0 +1,25 @@
"""Cloud runtime: multi-host device pool, scheduler, plugins, and public SDK.
Sibling to ``agents/``, ``workflow/``, etc. Composes the existing single-process
capabilities (``device-management``, ``agent-runtime``, ``workflow-orchestration``,
``driver-registry``) without editing them.
"""
__all__ = [
"CloudConfig",
"CloudStore",
"DevicePool",
"HostRegistration",
"PooledDevice",
"TaskScheduler",
"ScheduledTask",
"TaskConstraints",
"AssignmentStrategy",
"fifo_match_strategy",
"TaskDispatcher",
"Assignment",
"RemoteDispatchNotSupportedError",
"PluginManifest",
"PluginRegistry",
"DiscoveryResult",
]