/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
galaxy/session/__init__.py
26 строк
658 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. """ Galaxy Session Package This package contains session implementations for the Galaxy framework, including the GalaxySession for DAG-based task orchestration sessions and event-driven observers for monitoring and visualization. """ from .galaxy_session import GalaxySession # Import observers from the new modular structure from .observers import ( ConstellationProgressObserver, SessionMetricsObserver, DAGVisualizationObserver, ) __all__ = [ "GalaxySession", "ConstellationProgressObserver", "SessionMetricsObserver", "DAGVisualizationObserver", ]