{{ thread.status }}
Backend: {{ thread.config.agent_backend }}
Approval: {{ thread.config.approval_mode }}
{% extends "layout.html" %} {% block title %}Thread {{ thread.id[:8] }} - Development Harness{% endblock %} {% block content %}
{{ thread.status }}
Backend: {{ thread.config.agent_backend }}
Approval: {{ thread.config.approval_mode }}
Created: {{ thread.created_at.isoformat()[:19] }}
Updated: {{ thread.updated_at.isoformat()[:19] }}
Turns: {{ thread.turns|length }}
Tool: {{ thread.pending_approval.tool_name }}
Reason: {{ thread.pending_approval.reason }}
{{ thread.pending_approval.arguments }}
Input: {{ turn.user_input }}
{% if turn.assistant_response %}Response:
{{ turn.assistant_response[:2000] }}
{% endif %}
{% if turn.error %}
Error: {{ turn.error }}
Tool Calls: {{ turn.tool_calls|length }}
{% for tc in turn.tool_calls %}{{ tc.arguments }}
{% if tc.result %}
{{ tc.result.output[:1000] }}
{% endif %}
Verification: {% if turn.verification.all_passed %}PASSED{% else %}FAILED{% endif %}
{% for r in turn.verification.results %}{{ "PASS" if r.passed else "FAIL" }} {{ r.verifier_name }}: {{ r.message }}
{% endfor %} {% endif %}| Time | Kind | Data |
|---|---|---|
| {{ event.timestamp.isoformat()[:19] }} | {{ event.kind }} |
{{ event.data }} |
| Name | Kind | Created |
|---|---|---|
| {{ art.name }} | {{ art.kind }} | {{ art.created_at.isoformat()[:19] }} |