File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/backend/v4/orchestration Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 2323
2424from common .database .database_base import DatabaseBase
2525from common .utils .utils_agents import (
26- generate_assistant_id ,
2726 get_database_team_agent_id ,
2827)
2928from v4 .common .services .team_service import TeamService
@@ -76,15 +75,15 @@ async def init_orchestration(
7675 # Create Azure AI Agent client for orchestration using config
7776 # This replaces AzureChatCompletion from SK
7877 agent_name = team_config .name if team_config .name else "OrchestratorAgent"
79- db_agent_id = await get_database_team_agent_id (
80- memory_store , team_config , agent_name
81- )
78+ # db_agent_id = await get_database_team_agent_id(
79+ # memory_store, team_config, agent_name
80+ # )
8281 # agent_id = db_agent_id or generate_assistant_id()
8382 try :
8483 chat_client = AzureAIAgentClient (
8584 project_endpoint = config .AZURE_AI_PROJECT_ENDPOINT ,
8685 model_deployment_name = team_config .deployment_name ,
87- # agent_id=agent_id,
86+ # agent_id=agent_id,
8887 agent_name = agent_name ,
8988 async_credential = credential ,
9089 )
You can’t perform that action at this time.
0 commit comments