リクエスト情報
ID
{{ record.id[:16] }}…
Time
{{ record.timestamp|format_time }}
Provider
{{ record.provider }}
Model
{{ record.model }}
Session
{{ record.session_id[:16] }}…
Step
{{ record.step_id }}
コスト・トークン
Input tokens
{{ record.input_tokens|format_tokens }}
Output tokens
{{ record.output_tokens|format_tokens }}
{% if record.reasoning_tokens > 0 %}
🧠 Reasoning tokens
{{ record.reasoning_tokens|format_tokens }}
Reasoning ratio
{% set total_out = record.output_tokens + record.reasoning_tokens %}
{% set pct = (record.reasoning_tokens / total_out * 100) if total_out > 0 else 0 %}
{{ "%.0f"|format(pct) }}%
{% endif %}
Total tokens
{{ (record.input_tokens + record.output_tokens + record.reasoning_tokens)|format_tokens }}
Cost
{{ record.cost_usd|format_cost }}
Status
{% if record.is_cached %}
cached
{% elif "cost_limited" in record.tags %}
mock
{% else %}
live
{% endif %}
{% if record.tags %}
Tags
{{ record.tags | join(", ") }}
{% endif %}
{% if record.memo %}
Memo
{{ record.memo }}
{% endif %}