Real-time visualization of agent delegation chains and multi-hop workflows
Orchestration Statistics
Total Delegations
{{ delegations|length }}
Agent-to-agent handoffs
Unique Agents
{% set unique_agents = {} %}
{% for d in delegations %}
{% if d.from_agent not in unique_agents %}
{% set _ = unique_agents.update({d.from_agent: True}) %}
{% endif %}
{% if d.to_agent not in unique_agents %}
{% set _ = unique_agents.update({d.to_agent: True}) %}
{% endif %}
{% endfor %}
{{ unique_agents|length }}