Phase 9 of the rebrand cascade. Sweep covers everything the Phase 8
frontend pass deliberately skipped: docs/, root markdown, scripts,
Cargo.toml descriptions, code comments that survived earlier
word-boundary sed, plus a handful of identifiers caught on the final
verify pass.
transcription-app changes:
- README.md, HANDOVER.md, KNOWN-ISSUES.md, run.sh — magnotia/Magnotia
-> lumotia/Lumotia.
- docs/ — sweep across all subdirs except docs/handovers/ (preserved
as immutable audit trail). Includes architecture-map references
to magnotia_core::*, magnotia_storage::*, etc. now pointing at
lumotia_*; dev-setup.md tracing output examples (lumotia_startup
target); brief/ + superpowers/ + issues/ + whisper-ecosystem/ +
audit/.
- Cargo.toml descriptions on 9 crates (core, audio, cloud-providers,
hotkey, llm, mcp, plus referenced others).
- crates/core/src/{error,hardware,recommendation,paths}.rs +
crates/audio/src/wav.rs + crates/llm/src/model_manager.rs +
crates/cloud-providers/src/keystore.rs + crates/mcp/src/lib.rs —
doc comments and a model-manager user-agent string.
- Caught on final pass: BroadcastChannel("magnotia_task_sync") -> ...
("lumotia_task_sync"); magnotia_locale i18n localStorage key
renamed + migration shim added; CSS keyframe names
magnotiaPulse / magnotiaBar / magnotiaFade renamed in the design-
system kit; magnotia_viewer_item / magnotia_viewer_mode handoff
keys renamed in HistoryPage + viewer/+page.svelte; src/assets/
wordmark.svg text.
- src-tauri/src/lib.rs comment cleanup ("magnotia era" was sed'd
to "lumotia era" earlier — restored).
Preserved (intentional):
- crates/core/src/paths.rs — keeps "magnotia" / "Magnotia" / ".magnotia"
legacy detection strings in legacy_and_target_paths() so the
migration shim can still find user data from the magnotia era.
- src/lib/stores/{page,focusTimer}.svelte.ts + src/lib/i18n/index.ts
— migration call sites reference the legacy magnotia keys
deliberately.
- docs/handovers/ — historical audit trail.
cargo build --workspace passes. npm run check: 0 errors / 0 warnings
(3958 files). cargo test --workspace: 339 pass / 0 fail.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5.2 KiB
name, type, slice, last_verified
| name | type | slice | last_verified |
|---|---|---|---|
| Parakeet backend (transcribe-rs ONNX) | architecture-map-page | 03-audio-transcription | 2026/05/09 |
Parakeet backend (transcribe-rs ONNX)
Where you are: Architecture map → Audio + Transcription → Parakeet backend
Plain English summary. Parakeet is loaded via transcribe-rs 0.3 with the onnx feature. The model itself is wrapped in a thin ParakeetWordGranularity shim that overrides the trait method to request word-level timestamps (instead of the default per-subword "T Est Ing" output). The shim is then wrapped in SpeechModelAdapter so the rest of the engine sees a uniform Transcriber. There is no Cargo feature for Parakeet today: the dep is unconditional.
At a glance
- Crate:
lumotia-transcription - Path:
crates/transcription/src/local_engine.rs:167(theParakeetWordGranularityshim) and:197(load_parakeet). - LOC (Parakeet-specific code): ~40.
- External deps:
transcribe-rs 0.3withdefault-features = false, features = ["onnx"]. - Internal callers (best effort, slice 2 reconciles):
src-tauri/src/commands/models.rscallsload_parakeetfrom the model-load command path.
Public surface:
pub fn load_parakeet(model_dir: &Path) -> Result<Box<dyn Transcriber + Send>>—crates/transcription/src/local_engine.rs:197.pub use transcribe_rs::SpeechModel— re-exported inlib.rs:18for any caller that wants to hold a rawSpeechModel.
What's in here
ParakeetWordGranularity (private struct)
local_engine.rs:167. Wraps transcribe_rs::onnx::parakeet::ParakeetModel. Implements transcribe_rs::SpeechModel by forwarding capabilities(), default_leading_silence_ms(), default_trailing_silence_ms() to the inner model, but overriding transcribe_raw:
fn transcribe_raw(&mut self, samples, options) -> ...TranscriptionResult... {
use transcribe_rs::onnx::parakeet::{ParakeetParams, TimestampGranularity};
let params = ParakeetParams {
language: options.language.clone(),
timestamp_granularity: Some(TimestampGranularity::Word),
};
self.0.transcribe_with(samples, ¶ms)
}
Why this exists: transcribe-rs 0.3's blanket SpeechModel impl for ParakeetModel::transcribe_raw ignores TranscribeOptions and uses TimestampGranularity::Token (per-subword), which surfaces in Lumotia as T Est Ing . One , Two , Three output. The concrete-type method ParakeetModel::transcribe_with accepts ParakeetParams with an explicit granularity. The shim exposes that to the trait object.
load_parakeet
local_engine.rs:197. ParakeetModel::load(model_dir, &Quantization::Int8) then wraps:
SpeechModelAdapter(Box::new(ParakeetWordGranularity(model)))
Hardcodes Quantization::Int8. No feature flag; no caller-side override.
Data flow
samples (f32, 16 kHz mono)
options: TranscriptionOptions { language, initial_prompt } // initial_prompt discarded
└─ SpeechModelAdapter::transcribe_sync
└─ TranscribeOptions {
language,
translate: false,
leading_silence_ms: None,
trailing_silence_ms: None,
}
└─ ParakeetWordGranularity::transcribe_raw
└─ ParakeetParams { language, timestamp_granularity: Word }
└─ ParakeetModel::transcribe_with
└─ TranscriptionResult { segments: Option<Vec<...>> }
→ Vec<Segment> (start_secs, end_secs as f64; text)
Watch-outs
initial_promptis silently discarded.SpeechModelAdapter::transcribe_syncdoes not look at it. The capability flag onTranscriberCapabilities { supports_initial_prompt: false }is what tells the UI to hide the field. Don't let a UI refactor accidentally show it.- Quantisation is locked to Int8. No way to pick FP16 or FP32 today without editing
load_parakeet. May matter for accuracy / VRAM trade-offs on bigger Parakeet variants. - Segment timestamps already come back in seconds. Unlike whisper-rs's centiseconds,
transcribe-rsreturns floats already in seconds. Theas f64casts inSpeechModelAdapterare widening, not unit conversion. - No Cargo feature gate.
transcribe-rsis always pulled in. Disabling Parakeet would require either a new feature in this crate, or editinglib.rsre-exports. Brief item #13 hints a future cloud-only ASR config might want to drop both backends; today only Whisper is gateable. ParakeetParamsdiffer between transcribe-rs versions. If you bumptranscribe-rs,transcribe_withandParakeetParamsare the API surface to re-verify. The shim is the only file that constructsParakeetParamsdirectly.ortversion conflict is the reason Silero VAD is blocked. Parakeet (transcribe-rs) requiresort 2.0.0-rc.12; the Silero crates pin2.0.0-rc.10. Documented in audio-vad.md.
See also
- Transcription engines overview — the
Transcriber/SpeechModelAdapterplumbing. - Audio VAD — the ort version conflict introduced by this dep.
- Cargo features — note Parakeet has no feature flag today.
transcribe_rs::SpeechModelre-export atcrates/transcription/src/lib.rs:18.