File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3030from v3 .common .services .team_service import TeamService
3131from v3 .config .settings import (
3232 connection_config ,
33- orchestration_config ,
33+ orchestration_config ,
3434 team_config ,
3535)
3636from v3 .orchestration .orchestration_manager import OrchestrationManager
@@ -305,7 +305,7 @@ async def process_request(
305305 # )
306306
307307 async def run_orchestration_task ():
308- await OrchestrationManager ().run_orchestration (user_id , input_task )
308+ await OrchestrationManager ().run_orchestration (user_id , input_task )
309309
310310 background_tasks .add_task (run_orchestration_task )
311311
Original file line number Diff line number Diff line change 66import asyncio
77import json
88import logging
9- from typing import Dict , Optional
9+ from typing import Dict
1010
1111from common .config .app_config import config
1212from common .models .messages_kernel import TeamConfiguration
Original file line number Diff line number Diff line change 1818 StreamingChatMessageContent )
1919from v3 .callbacks .response_handlers import (agent_response_callback ,
2020 streaming_agent_response_callback )
21- from v3 .config .settings import config , connection_config , orchestration_config
21+ from v3 .config .settings import connection_config , orchestration_config
2222from v3 .magentic_agents .magentic_agent_factory import MagenticAgentFactory
2323from v3 .models .messages import WebsocketMessageType
2424from v3 .orchestration .human_approval_manager import HumanApprovalMagenticManager
2525
26+
2627class OrchestrationManager :
2728 """Manager for handling orchestration logic."""
2829
You can’t perform that action at this time.
0 commit comments