{% extends "dashboard/base.html" %} {% block title %}Chat — {{ dashboard_title }}{% endblock %} {% block page_title %}Chat{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if agents %}
{% else %}
No agents available. Add agents to your workspace.
{% endif %}
{% if not agents %}
No agents available — add AGENT.md files to your workspace.
{% else %} {% set selected_name = namespace(val='') %} {% for agent in agents %} {% if agent.id == selected_agent_id %}{% set selected_name.val = agent.display_name %}{% endif %} {% endfor %}
Start a conversation with {{ selected_name.val or agents[0].display_name }}. Switch agents using the selector above.
{% endif %}
{% if agents and selected_agent_id %}
{% endif %}
{% endblock %}