Task details
{% if task.status == 'completed' %}Completed
{% elif task.status == 'running' %}Running
{% elif task.status == 'failed' %}Failed
{% elif task.status == 'cancelled' %}Cancelled
{% elif task.status == 'queued' %}Queued
{% else %}等待中
{% endif %}
{% if task.status in ['running', 'pending', 'queued'] %}
{% 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 %}
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 %}
Error message: {{ task.error_message }}
{% endif %}
{% if task.result %}
Execution result: Task completed
{% endif %}
Workflow
Agent Agent
Tool Tool
● start/end
Event history
{% for log in logs %}
{% endfor %}
{% 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 }}
Select an item on the left to view details
Click on the history record item on the left to view detailed content.