Skip to content

Commit b70488c

Browse files
author
Harmanpreet Kaur
committed
refactor: remove commented-out code for agent ID generation in orchestration_manager
1 parent d72f58e commit b70488c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/backend/v4/orchestration/orchestration_manager.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,11 @@ async def init_orchestration(
7373
# Create Azure AI Agent client for orchestration using config
7474
# This replaces AzureChatCompletion from SK
7575
agent_name = team_config.name if team_config.name else "OrchestratorAgent"
76-
# db_agent_id = await get_database_team_agent_id(
77-
# memory_store, team_config, agent_name
78-
# )
79-
# agent_id = db_agent_id or generate_assistant_id()
76+
8077
try:
8178
chat_client = AzureAIAgentClient(
8279
project_endpoint=config.AZURE_AI_PROJECT_ENDPOINT,
8380
model_deployment_name=team_config.deployment_name,
84-
# agent_id=agent_id,
8581
agent_name=agent_name,
8682
async_credential=credential,
8783
)

0 commit comments

Comments
 (0)