Back to Home

Task Detail {{ task_id }}

Basic Information

Task ID
{{ task_id }}
Task Type
{{ task_type }}
Instruction
{{ task_info.instruction }}
Status
{{ task_status.status }} {% if task_status.status == 'Error' %} Error occurred during task execution {% elif task_status.status == 'Done (Message Exit)' %} Task completed with a message exit condition {% elif task_status.status == 'Done (Max Steps)' %} Maximum steps reached, task completed {% elif task_status.status == 'Done (Thought Exit)' %} Task completed with a thought exit condition {% endif %}
Current Step
{{ task_status.progress }}
Last Update
{{ task_status.last_update or 'None' }}
{% if task_status.log_data and task_status.log_data.exit_condition %}
Exit Condition
{{ task_status.log_data.exit_condition }}
{% endif %} {% if task_status.status == 'Done (Message Exit)' and task_status.log_data and task_status.log_data.last_message %}
Exit Message
{{ task_status.log_data.last_message }}
{% endif %}
Result
{{ task_status.result }}
{% if task_status.status.startswith('Done') %}
Recording
Loading video...
{% endif %}

Execution Steps

{% if task_status.steps %} {% for step in task_status.steps %}
Step {{ step.step_num }}
{{ step.action_timestamp }}
{% if task_status.log_data and task_status.log_data.agent_responses and loop.index0 < task_status.log_data.agent_responses|length %}
Agent Intent: {{ task_status.log_data.agent_responses[loop.index0] }}
{% endif %}
{% if step.action and step.action.action %}{{ step.action.action }}
                            {% elif step.Error %}Error: {{ step.Error }}
                            {% else %}{{ step|tojson }}
                            {% endif %}
{% if step.screenshot_file %}
Step {{ step.step_num }} Screenshot
{% endif %}
{% endfor %} {% else %}
No step data available
{% endif %}