Agent Chat Round Detail

View complete agent chat round records

Agent Chat Round Record
ID: {{ chat_round.id }}
Time: {{ chat_round.timestamp }}
Steps: {{ chat_round.steps|length }}
Query Length: {{ chat_round.query|length }} 字符
Answer Length: {{ chat_round.answer|length }} 字符
{{ chat_round.steps|length }}
Total Steps
{{ chat_round.query|length }}
Query Characters
{{ chat_round.answer|length }}
Answer Characters

User Query

{{ chat_round.query }}

Agent Answer

Show Answer ({{ chat_round.answer|length }} characters)
{{ chat_round.answer }}

Message History

{% for step in chat_round.steps %}
{% if step.role == 'user' %} 👤 User {% elif step.role == 'assistant' %} 🤖 Assistant {% elif step.role == 'system' %} ⚙️ System {% else %} 📄 {{ step.role }} {% endif %} {% if step.name %} ({{ step.name }}) {% endif %} — {{ step.content|length }} chars · {{ step.content|truncate(60, True) }}
{{ step.content }}
Role: {{ step.role }} {{ step.content|length }} characters
{% endfor %}
Back to List Back to Home