Replies: 1 comment 1 reply
|
Worth a look: LiquidAI's Nanos family, specifically Might be a different angle on your constraint rather than just satisfying it. The whole reason you need |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Sharing my setup for running gpt-oss-20b (currently #1 on the retain leaderboard at 81.2) on a modest GPU, and asking if there's a better local option.
Hardware
Retain (local llama-server)
Unsloth's F16 GGUF:
unsloth/gpt-oss-20b-GGUF.Full launch command:
Why the key flags:
-ngl 999 --n-cpu-moe 18— offload everything to GPU, then spill 18 MoE experts back to CPU. Without CPU spill, MoE blows past 8 GB →0xC0000409OOM. With 18, ~1.2 GB VRAM headroom at 64k ctx.--cache-reuse 256— Hindsight's retain prompt has a stable ~2.7k-token system+schema prefix. Enabling KV prefix reuse cut a dry-run-extract from 145s to 50s (~3×). Confirmed viacached_tokens=2737on subsequent LLM calls in Hindsight logs.-fa on --jinja— flash attention + Jinja chat template rendering (needed for gpt-oss Harmony format).--chat-template-kwargs "{\"reasoning_effort\":\"low\"}"— pins reasoning effort at the server side; keeps output on the extraction path, not the thinking path.--alias gpt-oss-20b-unsloth-f16— model name reported by/v1/models; matches my gateway's routing target.Wrapped in a supervisor script that auto-restarts the server in 5s on crash.
Throughput: 33-35 tok/s. Consolidation calls (~26k in / 2.7k out): 90-125s.
Reflect (paid, via OpenRouter)
gpt-oss-120b won't fit locally, so reflect goes to
openai/gpt-oss-120bvia OpenRouter. Runs infrequently — ~$0.30/mo at my usage.Question
Is there a smaller or denser model that scores close to gpt-oss-20b on retain and fits GPU-only (no CPU spill)? Anything in the Qwen3 / Phi-4 / distilled families worth testing against the Hindsight retain eval? Happy to run comparisons and report back.
All reactions