Skip to content

Commit 418afaf

Browse files
committed
fix: show VLM model name in HTML report header and stat card
Report now displays 'gpt-5.2-codex + VLM: LFM2.5-VL-1.6B-Q8_0.gguf' in both subtitle and Model card. GPT-5.2-codex + LFM2.5-VL: 54/54 (100%)
1 parent 0ce0a04 commit 418afaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

skills/analysis/home-security-benchmark/scripts/generate-report.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border
174174
<div class="container">
175175
176176
<h1>🛡️ Home Security AI Benchmark</h1>
177-
<p class="subtitle">${model.name || 'Unknown Model'}${new Date(latest.timestamp).toLocaleDateString()} ${new Date(latest.timestamp).toLocaleTimeString()}</p>
177+
<p class="subtitle">${model.name || 'Unknown Model'}${model.vlm ? ' + VLM: ' + model.vlm : ''}${new Date(latest.timestamp).toLocaleDateString()} ${new Date(latest.timestamp).toLocaleTimeString()}</p>
178178
179179
<div class="hero">
180180
<div class="stat-card">
@@ -195,7 +195,7 @@ footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border
195195
<div class="stat-card">
196196
<div class="label">Model</div>
197197
<div class="value" style="font-size:1rem">${model.name || '?'}</div>
198-
<div class="sub">${system.cpu || '?'}</div>
198+
<div class="sub">${model.vlm ? 'VLM: ' + model.vlm : system.cpu || '?'}</div>
199199
</div>
200200
</div>
201201

0 commit comments

Comments
 (0)