Spaces:
Sleeping
Sleeping
| """ | |
| LangGraph Execution Graph for Mirai AI Copilot | |
| """ | |
| from typing import Dict, Any | |
| from .supervisor import execute_copilot_request | |
| class MiraiCopilotGraph: | |
| def run(self, input_state: Dict[str, Any]) -> Dict[str, Any]: | |
| return execute_copilot_request(input_state) | |
| copilot_graph = MiraiCopilotGraph() | |