feat: DAGI Router v2 - new endpoints, hooks, and UI card

This commit is contained in:
Apple
2025-12-01 05:21:43 -08:00
parent 53f31adbf0
commit e3accd4df0
221 changed files with 999 additions and 261 deletions

View File

@@ -3648,6 +3648,12 @@ async def get_node_agents(node_id: str) -> List[Dict[str, Any]]:
return [dict(row) for row in rows]
# Alias for DAGI Router integration
async def get_agents_for_node(node_id: str) -> List[Dict[str, Any]]:
"""Alias for get_node_agents - used by DAGI Router endpoints."""
return await get_node_agents(node_id)
# ==============================================================================
# Node Self-Registration & Self-Healing
# ==============================================================================