Task details
{% if task.status == 'completed' %}Completed {% elif task.status == 'running' %}Running {% elif task.status == 'failed' %}Failed {% elif task.status == 'cancelled' %}Cancelled {% else %}等待中 {% endif %} {% if task.status in ['running', 'pending'] %} {% endif %}
{{ task.task_description }}
Conversation ID: {{ task.conversation_id }}
Creation time: {{ task.created_at }}
{% if task.started_at %} Start time: {{ task.started_at }}
{% endif %} {% if task.completed_at %} Completion time: {{ task.completed_at }}
{% endif %}
{% if task.error_message %} {% endif %} {% if task.result %} {% endif %}
Workflow
Agent Agent   Tool Tool   start/end
Event history
{% for log in logs %}
{% if log.type == 'agent_input' %} {% if log.role_name %}{{ log.role_name }} input{% else %}Agent input{% endif %} {% elif log.type == 'agent_output' %} {% if log.role_name %}{{ log.role_name }} output{% else %}Agent output{% endif %} {% elif log.type == 'tool_input' %} {% if log.role_name %}{{ log.role_name }} call{% else %}Tool call{% endif %} {% elif log.type == 'tool_output' %} {% if log.role_name %}{{ log.role_name }} result{% else %}Tool result{% endif %} {% else %} {{ log.type_name }} {% endif %}
{{ log.timestamp }}
{% endfor %}
Select an item on the left to view details

Click on the history record item on the left to view detailed content.

{% if task.result %}
Final result
{% endif %}