{% extends "base.html" %} {% block title %}zcbot · {{ task_id_short }}{% endblock %} {% block nav %}tasks{% endblock %} {% block content %}

task {{ task_id_short }} {{ status }} {% if mode %}{{ mode }}{% endif %}

{{ n_messages }} msgs · {{ tokens }} tokens · {{ model_label }}
{% if description %}

{{ description }}

{% endif %} {% if task_dir %}

{{ task_dir }}

{% endif %}
{% for b in blocks %} {% if b.type == "user" %}
user
{{ b.html | safe }}
{% elif b.type == "assistant" %}
assistant
{% if b.html %}
{{ b.html | safe }}
{% endif %} {% for tc in b.tool_calls %}
tool {{ tc.name }} {{ tc.args_preview }}
args
{{ tc.args_pretty }}
result
{{ tc.result }}
{% endfor %}
{% endif %} {% endfor %}
{% if status == "active" %}
{% else %}

task 已 {{ status }},不接收新消息。CLI /done 改 status 来恢复。

{% endif %}

G4 流式 ✓ · 文件浏览 = G5 · 打磨 = G6

{% endblock %}