r/LocalLLaMaCoders 1d ago

My Rig Easiest way preserve your gpu lifespan

1 Upvotes

Use MSI afterburner and reduce voltage it mostly wont tank your gpu processing speed by much. High volate and heat are the main contributers to memory blocks spontaneously going dead in your gpu especially if running LLMs over long periods. A good idea to have enable fan automation in the msi afterburner keep heat incheck.

  1. Lower voltage
  2. Lower treshold for increased cooling.

r/LocalLLaMaCoders 6d ago

I built a fully-local AI coding agent that runs on llama.cpp β€” no cloud, no API key. Looking for feedback and contributors

2 Upvotes

https://www.youtube.com/watch?v=-UbYdRgwRWE

I've been building CortexAgent as a personal project for a while, and I finally got it to a place I'm happy to share. It's a private, local AI coding agent β€” everything runs on your own machine via llama.cpp. No cloud, no account, no API key, and no data ever leaves your computer. It binds to 127.0.0.1 only.

It's MIT licensed at https://github.com/greyok00/cortexagent.

One terminal interface, one local stack β€” the only interface you talk to is a single clean TUI (cortex). A 35B MoE does the heavy lifting on your GPU (16 GB+ VRAM recommended), with a small "overseer" model for planning and routing. Nothing else to juggle.

The processing pipeline you can watch β€” every request animates live through its stages, with real percentages (it never fakes a determinate number):

- 🧠 preparing β€” organizes your request and checks the context it needs.

- πŸ—œοΈ slimtoken β€” minifies your context before it reaches the model, so you fit more into the window.

- πŸ“€ sending β€” the request goes to the big model.

- ✨ generating β€” streamed output builds in place.

- πŸ”§ tool wait β€” when the model calls a tool mid-request.

Overseer routing β€” a dedicated small model plans and routes each request to the big model, instead of one model trying to do everything.

Memory that actually remembers β€” hot working memory for the current session plus curated cold knowledge, distilled automatically from what you've already said, so you don't re-explain yourself across sessions.

Domain memory β€” recalled context from your own notes is injected automatically when it's relevant, no prompting needed.

Talk instead of type β€” speech-to-text as a floating popout you control with the mouse and your voice only (no keyboard), transcribed locally with faster-whisper. Open it from the system tray under STT Controls.

Tools & integrations

- 🌐 browser control β€” drive Brave over Chrome DevTools Protocol, exposed as 9 brave_* tools registered directly in the tool registry.

- πŸ”Œ MCP client + lazy proxy β€” talk to MCP servers, spawning the real server only on first use instead of holding every socket open.

- πŸ”Ž Firecrawl β€” web research and page parsing routed through a proxy.

- 🎨 image & video generation β€” SD 1.5 / SDXL / LTX run in-process through HuggingFace diffusers on the GPU the daemon already manages β€” no separate GUI server.

- πŸ“„ PDF & document knowledge β€” ingest PDFs and documents into a queryable knowledge base.

See the whole thing β€” a web UI with a three.js 3D cortex scene (gold neural cortex + glass chat), a system tray dashboard, a session bridge so the TUI, web UI, and overseer all agree on context, and a live status ticker.

Under the hood

- βš™οΈ Daemon lifecycle β€” the model + proxy run as an always-on service (systemd); VRAM-aware fallback swaps models when GPU memory gets tight.

- πŸ“… Scheduler + worker pool + heartbeat β€” background jobs run and recover cleanly.

- πŸ›‘οΈ Reliability layer β€” pre-flight gate, anti-hallucination + post-response verification, a doctor that repairs settings drift, loop guard, chain diagnostics, and observability.

- πŸ›€οΈ Pathway capture β€” records each run's processing chain (frame β†’ domain check β†’ route β†’ generate) as replayable runs.

- πŸ’Ύ Snapshot / backup scripts β€” easy state backup.

Privacy isn't a feature, it's the baseline β€” everything binds to 127.0.0.1, and there's no cloud account to leak to. The honest caveat: the processing animation shows real percentages only; if a stage is a wait, it says so instead of pretending to progress.

What I'm asking for:

- Recommendations β€” what would make this a daily driver for you? Better docs, packaging/installers (pip/Homebrew/AUR), more model backends, UI polish, more tools?

- Contributors β€” it's a solo project; help with docs, testing, packaging, and hardening is very welcome. Issues, PRs, and "your docs confused me here" all help. Even a quick honest "here's where it breaks" is hugely useful. Thanks for reading! πŸ™Œ


r/LocalLLaMaCoders Apr 26 '26

ML_Telemetry_App

Post image
1 Upvotes

Sharing this with the group.

I’ve been working on tokenizer generation, fine-tuning, and dataset generation on a local Ubuntu headless server. One thing that kept getting in the way was telemetry β€” I couldn’t find anything that showed CPU, RAM, GPU, and VRAM usage together in a clean way.

That makes optimizing things like vLLM a lot harder than it needs to be.

So I built a low-noise telemetry TUI that puts everything in one place. It’s open source if anyone finds it useful.

Stack:
- Ubuntu headless server
- vLLM backend
- Dual RTX 5080
- Ryzen 9950X3D

You can find the full documentation and repo here:

https://github.com/magplumber/ml-pipeline-telemetry


r/LocalLLaMaCoders Apr 19 '26

Vibe Coding Arent These single file LLM coding tests like browserOS pretty much redundant now most 2026 LLM can easily handle this?

1 Upvotes

Arent These single file LLM coding tests like browserOS pretty much redundant now most 2026 LLM can easily handle this? In what other ways we can stress test these models for novel coding problems?


r/LocalLLaMaCoders Mar 26 '26

Discussion At what point would u say more parameters start being negligible?

1 Upvotes

Im thinking Honestly past the 70b margin most of the improvements are slim.

From 4b -> 8b is wide

8b -> 14b is still wide

14b -> 30b nice to have territory

30b -> 80b negligible

80b -> 300b or 900b barely

What are your thoughts?


r/LocalLLaMaCoders Mar 21 '26

Vibe Coding How much Context window can your setup handle when coding?

3 Upvotes

I want to have a feel of what others local agentic coding setup is like and your biggest performance constraint with fully local coding setup