Views
No views yet
confirmed|tentative
action items — empty list for pure chat). Runs on llama.cpp anywhere,
including phones; ~25 s per note on an 8 GB M2 Air, all offline.From: {sender} line, and the three instruction variants that select
full / no-translation / translation-only output), training data, and the
full evaluation. Headline: end-to-end action-item F1 0.76, hallucination
0.10 on pure-chat notes, 0 schema-parse failures, measured through this
exact quantized file with a JSON grammar.1from llama_cpp import Llama
2llm = Llama.from_pretrained("yashwork-byte/gemma-3-4b-it-voice-digest-GGUF",
3 "gemma-3-4b-it-ft-Q4_K_M.gguf", n_ctx=2048, n_gpu_layers=-1)
4out = llm.create_chat_completion(
5 messages=[{"role": "system", "content": SYSTEM_PROMPT},
6 {"role": "user", "content": f"Digest this voice note transcript.\n\nFrom: Papa\n{transcript}"}],
7 response_format={"type": "json_object"}, temperature=0.1)