{% macro render_log(log_entries=None, title="生成日志", show_controls=true) %}
{{ title }}
{% if show_controls %}
{% endif %}
{% if log_entries and log_entries|length > 0 %} {% for entry in log_entries %}
{{ entry.role }} {{ entry.timestamp }}
{{ entry.content|safe }}
{% endfor %} {% else %}
暂无日志内容
日志将在生成过程中自动更新
{% endif %}
{% endmacro %}