/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
galaxy/__init__.py
57 строк
1 KB
Chaoyun Zhang
refactor: Move galaxy module from ufo/galaxy to root/galaxy
04 окт 2025, 09:54
04 окт 2025, 09:54
f1db8d9
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ UFO Galaxy Framework A comprehensive framework for DAG-based task orchestration and device management. This package provides: - Constellation: DAG management and execution - Agents: Task orchestration agents (GalaxyWeaverAgent) - Session: Galaxy session management - Client: Device management and coordination """ # Core constellation components from .constellation import ( TaskConstellationOrchestrator, TaskConstellation, TaskStar, TaskStarLine, TaskStatus, DependencyType, ConstellationState, DeviceType, TaskPriority, ConstellationManager, ) # Agent components from .agents import ConstellationAgent # Session components from .session import GalaxySession # Client entry points from .galaxy_client import GalaxyClient __all__ = [ # Constellation "TaskConstellationOrchestrator", "TaskConstellation", "TaskStar", "TaskStarLine", "TaskStatus", "DependencyType", "ConstellationState", "DeviceType", "TaskPriority", "ConstellationManager", # Agents "ConstellationAgent", # Session "GalaxySession", # Client "GalaxyClient", ]