Skip to content

Commit 677adef

Browse files
committed
chore(release): v0.6.0 - Gemma 4 thinking ON usable + schema-driven env UI
Highlights - thinking ON for Gemma 4 26B-A4B IT is production-usable via two safety net layers: ChannelBudget (force-close at N reasoning tokens) and n-gram runaway detector. Validated end-to-end with Ayla against the mlx-community baseline and our hybrid embed8-last13attn8 ship. - LUMEN_BACKEND_THINKING_DEFAULT env restored. Operator opt-in for per-server reasoning default; per-request signals (chat_template_kwargs.enable_thinking, reasoning_effort, thinking) still override. - Schema-driven env overrides UI in lumen-app: 12 typed knobs (Reasoning / Safety net / Advanced / Debug), checkbox/number-with- range/select widgets, validated input, bilingual labels. - Embedding visibility fix: scan_local now merges entries from the hf-hub cache, so models auto-fetched by the server appear as downloaded in the UI. New MODELS-card embedding mini-row. - Log viewer: auto-scroll to bottom, content-visibility virtualization, raised in-memory cap from 500 to 2000 lines. mlx-rs / mlx-sys git revs unchanged from v0.5.0. Recommended Gemma 4 server env for thinking ON: LUMEN_BACKEND_THINKING_DEFAULT=on LUMEN_MAX_THINKING_TOKENS=600 LUMEN_MAX_FORCE_CLOSE_ATTEMPTS=1 LUMEN_RUNAWAY_DETECT=1
1 parent 14bf8c2 commit 677adef

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/lumen-app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lumen-app"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
license.workspace = true

crates/lumen-app/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lumen-app-frontend",
33
"private": true,
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"type": "module",
66
"scripts": {
77
"predev": "cargo build --manifest-path ../../../Cargo.toml -p lumen-server --release",

crates/lumen-app/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Lumen",
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"identifier": "ai.lumen.app",
66
"build": {
77
"frontendDist": "frontend/dist",

0 commit comments

Comments
 (0)