We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72f58e commit b70488cCopy full SHA for b70488c
src/backend/v4/orchestration/orchestration_manager.py
@@ -73,15 +73,11 @@ async def init_orchestration(
73
# Create Azure AI Agent client for orchestration using config
74
# This replaces AzureChatCompletion from SK
75
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()
+
80
try:
81
chat_client = AzureAIAgentClient(
82
project_endpoint=config.AZURE_AI_PROJECT_ENDPOINT,
83
model_deployment_name=team_config.deployment_name,
84
- # agent_id=agent_id,
85
agent_name=agent_name,
86
async_credential=credential,
87
)
0 commit comments