Five-slice navigable map of the entire codebase under
docs/architecture-map/. Each slice is a self-contained
breadcrumbed sub-tree:
01-frontend (16) Svelte/SvelteKit UI
02-tauri-runtime (26) src-tauri commands + lifecycle
03-audio-transcription (16) audio + transcription crates
04-llm-formatting-mcp (19) llm, ai-formatting, mcp, cloud
05-core-storage-hotkey-build core, storage, hotkey, workspace,
(26) CI, dev glue
Plus master README.md and data-flow-end-to-end.md tracing
audio bytes from microphone to FTS5 search to MCP read.
Generated by 5 parallel subagents on 2026/05/09 against
HEAD 3c47000. Each page has YAML frontmatter, file:line code
refs, sibling cross-links, plain-English summaries.
Aggregated debt surfaced (full lists in master README):
RB-08 macOS power assertion, schema head drift v14 vs v15,
VAD blocked on ort version conflict, streaming primitives
not wired into live.rs, no prompt versioning, MCP has no
auth, cloud-providers in-memory keystore, SettingsPage
2 484 LOC, commands/live.rs 1 737 LOC, dual theme system,
brand rename to Lumenote pending across the codebase.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
4.5 KiB
name, type, slice, last_verified
| name | type | slice | last_verified |
|---|---|---|---|
| LLM cleanup_text surface | architecture-map-page | 04-llm-formatting-mcp | 2026/05/09 |
LLM cleanup_text surface
Where you are: Architecture map → LLM, Formatting, MCP → cleanup_text
Plain English summary. cleanup_text is the freeform LLM call. Given any system prompt and a transcript, it returns the LLM's cleaned version as plain text. No grammar constraint, no JSON parsing. The formatting crate's llm_client::cleanup_text is the only canonical caller and supplies the prompt-injection-hardened system prompt.
At a glance
- Crate:
magnotia-llm - Path:
crates/llm/src/lib.rs:232 - LOC: 21 lines for this method
- Public surface:
pub fn cleanup_text(&self, system_prompt: &str, transcript: &str) -> Result<String, EngineError> - External deps that matter: none beyond what
LlmEngine::generatealready pulls in - Tauri command that calls this (slice 2, best guess): not called directly by Tauri. The chain is
commands::llm::cleanup_transcript_text_cmd(src-tauri/src/commands/llm.rs:363) →magnotia_ai_formatting::llm_cleanup_text(src-tauri/src/commands/llm.rs:395) → this method. Also reached fromcommands::transcription::*andcommands::live::*via the formatting pipeline atcrates/ai-formatting/src/pipeline.rs:84.
What's in here
pub fn cleanup_text(&self, system_prompt: &str, transcript: &str) -> Result<String, EngineError>
Behaviour:
- If
transcript.trim().is_empty(), returnOk(String::new())immediately. No model touch. - Borrow the loaded model via
loaded_model_arc(). ReturnsEngineError::NotLoadedif no model is loaded. - Render a chat prompt with two messages —
("system", system_prompt)and("user", transcript)— throughrender_chat_prompt, which applies the model's tokenizer-bundled chat template and falls back to ChatML if missing. - Call
generatewith:max_tokens: 1024temperature: 0.0stop_sequences: ["<|im_end|>", "<|im_end_of_text|>"]grammar: None
Returns the trimmed, post-stop-sequence-truncated output verbatim.
Data flow
(system_prompt: &str, transcript: &str)
→ empty-transcript short-circuit (returns "")
→ loaded_model_arc() (NotLoaded error if absent)
→ render_chat_prompt([(system, system_prompt), (user, transcript)])
→ generate(prompt, GenerationConfig { max_tokens: 1024, temp: 0.0, stops: [<|im_end|>, <|im_end_of_text|>], grammar: None })
→ trimmed String
No JSON parse, no GBNF, no closed set. The contract with the caller is "do whatever the system prompt tells you to do".
Prompts and grammars
cleanup_text itself does not own a prompt — the system prompt is a parameter. The canonical caller is magnotia_ai_formatting::llm_client::cleanup_text which composes:
CLEANUP_PROMPT + format_dictionary_suffix(dictionary_terms) + preset.suffix()
See formatting-llm-cleanup-bridge.md for the full composition logic and prompt-injection-hardening rationale, and llm-prompts-and-grammars.md for the prompt text in full.
Watch-outs
- No grammar means the model can output anything. This is by design — cleanup is freeform — but it means the prompt is the only line of defence against prompt injection. The
llm_clientbridge handles this; do not callLlmEngine::cleanup_textfrom anywhere else without porting that hardening. max_tokens: 1024is a hard ceiling on output length. A long dictation that compresses well is fine; one that compresses poorly will be cut off mid-sentence. The pipeline does not detect or retry truncated output. If we ever get reports of mid-sentence drops on long transcripts, raise this constant in tandem with the preflight cap.temperature: 0.0plus the fixed seed makes output deterministic for a given prompt and loaded model. Switching tier (e.g. 4B → 9B) will change the output even with the same input.- Stop sequences are Qwen-specific. Both
<|im_end|>and<|im_end_of_text|>are emitted by Qwen3.5 / 3.6 chat templates. A future model from a different family would need its own stop set. - Empty transcript returns empty string, not an error. Callers that want to distinguish "nothing to clean" from "model not loaded" should check
is_loaded()first.