Skip to content

Commit fd0cc7f

Browse files
Synalux AIclaude
andcommitted
fix: inline framing in metrics title so caveat travels with data
"📊 Inference Metrics — local-model delegation (this session):" prevents the block being mistaken for a session spend-meter when relayed without the tool description's disclaimer. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b66287a commit fd0cc7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/inferenceMetrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export function formatInferenceMetrics(): string {
123123
if (snap.totalCalls === 0) return "";
124124

125125
const lines: string[] = [
126-
`\n📊 Inference Metrics (this session):`,
126+
`\n📊 Inference Metrics — local-model delegation (this session):`,
127127
` Total calls: ${snap.totalCalls} — Local: ${snap.localCalls} (${snap.localPct}%) | Cloud: ${snap.cloudCalls} (${snap.cloudPct}%)`,
128128
` Tokens: ${snap.totalPromptTokens.toLocaleString()} in + ${snap.totalCompletionTokens.toLocaleString()} out = ${snap.totalTokens.toLocaleString()} total`,
129129
` Avg latency: ${snap.avgLatencyMs}ms`,

0 commit comments

Comments
 (0)