Skip to content

Commit 5c20e23

Browse files
greenpoloclaude
andcommitted
fix(web-demo): drop Gemma free-mode hint from settings panel
The "Free mode: no coarse-fine / bracket gating" line was developer- facing noise. The behavior still kicks in automatically when a Gemma model is selected; we just don't surface it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3216459 commit 5c20e23

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

web-demo/src/components/SettingsPanel.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export function SettingsPanel() {
4747
const canEstimate = Boolean(selectedSlice) && !pipelineRunning;
4848

4949
const estimateIsGemini = /gemini/i.test(estimateModel);
50-
const estimateIsGemma = /gemma/i.test(estimateModel);
5150
// Demo brain ships pre-baked CLAHE variants. Uploaded brains don't have
5251
// them, so the per-stage CLAHE toggle has nothing to send — disable it.
5352
const selectedSliceHasClahe = Boolean(selectedSlice?.clahePath);
@@ -141,18 +140,6 @@ export function SettingsPanel() {
141140
/>
142141
</div>
143142

144-
{estimateIsGemma && (
145-
<div
146-
style={{
147-
fontFamily: "var(--font-mono)", fontSize: 10,
148-
color: "var(--accent)", marginTop: 4,
149-
}}
150-
title="LangSlice-Gemma is fine-tuned for one-shot estimates"
151-
>
152-
Free mode: no coarse-fine / bracket gating
153-
</div>
154-
)}
155-
156143
<details className="advanced-disclosure">
157144
<summary>Advanced</summary>
158145
<div className="advanced-body">

0 commit comments

Comments
 (0)