{% extends "base.html" %} {% block title %}dudamel — chat{% endblock %} {% block content %}

Chat

{% for m in messages %} {% if m.role in ('user', 'assistant') and m.text %}
{{ m.role }} {{ m.text }}
{% endif %} {% else %}

No messages yet — say something below.

{% endfor %} {% for p in pending %}

Confirm {{ p.tool }}({{ p.args }})?

{% endfor %}
{% endblock %}