{# task_execution.html — Chat interface with voice support #} {% extends "base.html" %} {% block content %}
{% for msg in chat_history %} {% if msg.role=='user' %}
{{ msg.content }}
{% else %}
{{ msg.content }}
{% endif %} {% endfor %}
{% endblock %}