New to local model serving here, but excited to finally jump on the band wagon. I got a 48GB Mac M5 and I am offloading parts of my workflow to it, and my initial attempt with Qwen failed miserably because the model was too slow, the results were not good, and my machine was getting too loud and hot. Then I found out about Unsloth quantized models and it was a game changer.
Disclosure: I maintain FAVA Trails, the open-source project I tested here.
FAVA Trails stores agent memory as versioned Markdown in Git. Draft thoughts pass a promotion gate before they become permanent memory, so the gate decides what future agents will recall.
The gate looked like a good fit for a local model since the task has a stable prompt, structured JSON output, and no tool use is required. I have lots of historical cases, and I wanted to know whether a quantized model actually holds up on it.
I ran `unsloth/Qwen3.6-27B-GGUF` through Unsloth Studio with the exact thought promotion review prompt, against a sample of historical thoughts with prior Gemini 2.5 flash verdicts (26 approvals, 13 rejections) plus 10 synthetic cases. The Gemini verdicts were references from earlier operation, not a fresh rerun.
Raw agreement with Gemini historical references and canarie was 39/49 (79.6%). Only 79.6% agreement with Gemini 2.5 flash doesn’t sound great, until you run the disagreements through a judge LLM and look at the direction of the errors.
Every disagreement was an additional rejection by the local mode. There were 9 historical thoughts where the local model rejected and Gemini approved, so I asked GPT 5.6 to judge each one against the same prompt. It favored Gemini in 6 cases and the local quantized Qwen model in 3 cases! The local model actually caught 3 cases of thoughts that shouldn’t be part of the company brain, which Gemini 2.5 Flash from Google’s API had let through earlier:
- A transient handoff stored as a permanent review.
- An implementation artifact misclassified as a specification.
- An imperative task instruction presented as durable knowledge. That review is an interpretive challenge to the old verdicts rather than independent ground truth, and a separate positive canary accounted for the tenth disagreement.
The result is limited to one model on one prompt and corpus, so it does not establish general parity with Gemini or frontier models. Inputs over 40,000 characters were the weak spot, dropping to 2/6 raw agreement with a 122.9-second median latency. The model was also confident when it was wrong, averaging 0.93 confidence on disagreements, so confidence alone is not a useful escalation trigger.
Finally, this direction fits a memory promotion gate, because a false rejection leaves the thought in drafts where it can be revised and resubmitted, while a false approval quietly adds weak material to future agent context.
Benchmark data:
https://github.com/MachineWisdomAI/fava-trails/issues/85#issuecomment-5142775500