Agents {% if state.all_agents %} {{ state.all_agents.active_count }} active / {{ state.all_agents.count }} all {% endif %} {% if state.disconnected_agents %} / {{ state.disconnected_agents.count }} historical disconnected {% endif %} Disconnected Agents
{% if state.all_agents and state.all_agents.active_count %}
    {% for agent in state.all_agents.entries %} {% if agent.status == "active" %}
  • {{ agent.handle }} {{ agent.participant_id_short }} {% if agent.host_label or agent.tooltip %} {% if agent.host_label %} {{ agent.host_label }} {% endif %} {% if agent.tooltip %}
    Model: {{ agent.tooltip.model_label }}
    Wrapper: {{ agent.tooltip.agent_kind_label }}
    IDE: {{ agent.tooltip.ide_label }} ({{ agent.tooltip.ide_detection_via }})
    {% endif %}
    {% endif %} / {{ agent.status }} / {{ agent.last_seen_s_ago }}s ago
    identity: {{ agent.identifier }} {% if agent.identity_detail %} / {{ agent.identity_detail }} {% endif %} / full id {{ agent.participant_id }}
  • {% endif %} {% endfor %}
{% else %}

No active agents right now.

{% endif %}