- Update all imports to use relative imports instead of cluster4npu_ui.* prefix - Remove export configuration functionality from dashboard menu - Remove performance analysis action from pipeline menu - Update dependencies in pyproject.toml to include NodeGraphQt and PyQt5 - Maintain clean import structure across all modules 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
693 B
Python
25 lines
693 B
Python
"""
|
|
Main application windows for the Cluster4NPU UI.
|
|
|
|
This module contains the primary application windows including the startup
|
|
dashboard, main pipeline editor, and integrated development environment.
|
|
|
|
Available Windows:
|
|
- DashboardLogin: Startup window with project management
|
|
- IntegratedPipelineDashboard: Main pipeline design interface (future)
|
|
- PipelineEditor: Alternative pipeline editor window (future)
|
|
|
|
Usage:
|
|
from ui.windows import DashboardLogin
|
|
|
|
dashboard = DashboardLogin()
|
|
dashboard.show()
|
|
"""
|
|
|
|
from .login import DashboardLogin
|
|
from .dashboard import IntegratedPipelineDashboard
|
|
|
|
__all__ = [
|
|
"DashboardLogin",
|
|
"IntegratedPipelineDashboard"
|
|
] |