Skip to content

Commit 5175330

Browse files
author
Harmanpreet Kaur
committed
chore: update orchestration manager documentation and structure
1 parent 18b1589 commit 5175330

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/backend/v4/orchestration/orchestration_manager.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
from common.database.database_base import DatabaseBase
2525
from common.utils.utils_agents import (
26-
generate_assistant_id,
2726
get_database_team_agent_id,
2827
)
2928
from 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
)

0 commit comments

Comments
 (0)