时间范围
{{ formatTime(currentAttempt.started_at) }}
+{{ formatDuration(currentAttempt.started_at, currentAttempt.finished_at) }}
→
{{ currentAttempt.finished_at ? formatTime(currentAttempt.finished_at) : '进行中' }}
密钥
{{ currentAttempt.key_name || '未知' }}
{{ currentAttempt.key_preview }}
能力
{{ formatCapabilityLabel(cap) }}
输入
{{ formatNumber(usageData.tokens.input) }}
${{ usageData.cost.input.toFixed(6) }}
输出
{{ formatNumber(usageData.tokens.output) }}
${{ usageData.cost.output.toFixed(6) }}
缓存创建
{{ formatNumber(usageData.tokens.cache_creation || 0) }}
${{ (usageData.cost.cache_creation || 0).toFixed(6) }}
缓存读取
{{ formatNumber(usageData.tokens.cache_read || 0) }}
${{ (usageData.cost.cache_read || 0).toFixed(6) }}
跳过原因
{{ currentAttempt.skip_reason }}
{{ currentAttempt.error_type || '错误' }}
{{ currentAttempt.error_message || '未知错误' }}