/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
galaxy/constellation/__init__.py
35 строк
934 B
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. """ Task System for Constellation V2 - Modular task orchestration system. This module provides a comprehensive task management system for multi-device orchestration with LLM integration, dynamic task creation, and async execution. """ from .enums import ( TaskStatus, DependencyType, ConstellationState, TaskPriority, DeviceType, ) from .task_star import TaskStar from .task_star_line import TaskStarLine from .task_constellation import TaskConstellation from .orchestrator.orchestrator import TaskConstellationOrchestrator from .orchestrator.constellation_manager import ConstellationManager __all__ = [ "TaskStatus", "DependencyType", "ConstellationState", "TaskPriority", "DeviceType", "TaskStar", "TaskStarLine", "TaskConstellation", "TaskConstellationOrchestrator", "ConstellationManager", ]