{% if agents %} {% for agent in agents %}
{% if agent.avatar_url %} {{ agent.display_name }} {% else %} {{ agent.initials }} {% endif %}
{% if not agent.enabled %} Disabled {% elif agent.status == 'setup_required' %} Setup Required {% elif agent.status == 'busy' %} Busy {% else %} Online {% endif %}
{% if current_user and current_user.is_admin %} {{ agent.display_name }} {% else %}

{{ agent.display_name }}

{% endif %}

{{ agent.model }}

{% if agent.description %}

{{ agent.description }}

{% else %}

No description provided for this agent.

{% endif %} {% if agent.tags %}
{% for tag in agent.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if agent.status == 'setup_required' %} settings Configure {% else %} chat_bubble Chat terminal {% endif %}
{% if agent.is_personal and agent.status != 'setup_required' %} settings {% endif %} {% if current_user and current_user.is_admin %}
{% if agent.enabled %} {% else %} {% endif %}
{% endif %}
{% endfor %} {% else %}
smart_toy

No Agents Found

No agents are currently configured in your workspace. Add one to get started.

{% endif %}