{% if agents %}
{% for agent in agents %}
{% if agent.type == "analytical" %}
{% elif agent.type == "workflow" %}
{% elif agent.type == "specialist" %}
{% else %}
{% endif %}

{{ agent.name }}

{{ agent.type or "conversational" }}

Active

{{ agent.description or "AI agent ready to assist with various tasks." }}

Version: {{ agent.version or "1.0.0" }}
Status: Ready
{% set agent_slug = agent.slug if agent.slug else (agent.api_path.replace('/agents/', '').rstrip('/') if agent.api_path and agent.api_path.startswith('/agents/') else '') %} {% set instructions_path = agent.instructions_path if agent.instructions_path else 'supervaize_instructions.html' %}
{% endfor %}
{% else %}

No agents available

No agents are currently configured in the server.

{% endif %}