v0.27.2:0 - vision check tool + mark Qwen3.6 vision-capable

Qwen3.6-35B-A3B is multimodal (vision tower on disk) but was labelled
text-only. Mark it [vision, reasoning] and add a 'Vision check' button on
the running vision-capable card: upload an image + prompt -> existing /v1
passthrough proxy -> show the model's text. Confirmed 7/7 fields on a
business card. Records the Gemma-4-26B deferral + research findings.
This commit is contained in:
Keysat
2026-06-18 18:14:30 -05:00
parent c846386c1a
commit 9a3bf9ed86
6 changed files with 120 additions and 5 deletions
+12
View File
@@ -805,6 +805,18 @@ main {
.test-result .ok-mark { color: var(--accent); font-weight: 600; }
.test-result .fail-mark { color: var(--error); font-weight: 600; }
/* Vision check modal */
.vc-preview { display: block; max-width: 100%; max-height: 180px; border-radius: 8px; margin: 4px 0 10px; border: 1px solid var(--border); }
.vc-result {
margin-top: 4px; padding: 10px 12px;
border: 1px solid var(--border); border-radius: 8px;
background: var(--surface-2);
white-space: pre-wrap; word-break: break-word;
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 12px; line-height: 1.5; max-height: 280px; overflow: auto;
}
.vc-result.fail { border-color: rgba(239, 68, 68, 0.45); color: var(--error); }
.footer {
margin-top: 28px;
padding-top: 16px;