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 }}
Current Step
{{ task_status.progress }}
Last Update
{{ task_status.last_update or 'None' }}
Result
{{ task_status.result }}
Execution Steps
{% if task_status.steps %} {% for step in task_status.steps %}
Step {{ step.step_num }}
{{ step.action_timestamp }}
{{ step.action.action }}
{% if step.screenshot_file %}
{% endif %}
{% endfor %} {% else %}
No step data available
{% endif %}