{# templates/Collector/ai_chat.html.twig #} {% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block toolbar %} {# Optional: Add a toolbar icon or summary here #} {% endblock %} {% block menu %} {{ include('@WebProfiler/Icon/logger.svg') }} AI Chat {% endblock %} {% block panel %}

AI Chat Log

{% if collector.log is empty %}

No AI chat log entries.

{% else %} {% for entry in collector.log %} {% endfor %}
Prompt Response
{{ entry.prompt|e }}
{{ entry.response|e }}
{% endif %} {% endblock %}