{% extends "base.html" %} {% block title %}{{ chat.title }} β€” Pengy{% endblock %} {% block extra_style %} {{ pygments_css | safe }} {% endblock %} {% block navbar_center %} {{ config.model }} {{ {'all':'YOLO','safe':'Safe','none':'Confirm'}.get(config.tool_confirmation, 'Confirm') }} {% endblock %} {% block sidebar_chats %} {% for c in chats %} {{ c.title }}
{% endfor %} {% endblock %} {% block main %}
{% if not turns %}
🐧
Start a conversation
{% endif %} {% for turn in turns %} {% if turn.type == "user" %}
{{ turn.content }}
{% elif turn.type == "assistant" %}
{{ turn.html | safe }}
{% elif turn.type == "tool_use" %}
{% for ev in turn.events %}
{{ ev.name }} {% if ev.declined %} declined {% elif ev.result is not none %} done {% else %} ? {% endif %}
{{ ev.args | tojson(indent=2) }}
{% if ev.result is not none %} {% if ev.declined %}
Declined by user
{% else %}
{{ ev.result[:3000] }}{{ "…" if ev.result | length > 3000 else "" }}
{% endif %} {% endif %}
{% endfor %}
{% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}