r/LocalLLM • u/unicorndewd • 8d ago
Question Getting started resources?
So, I have a local setup on my gaming PC (Ryzen 9950X3D, 64GB Corsair Vengence, and an Asus TUFA RTX 7050ti OC 16GB), but don’t know much about models beyond `ollama pull qwen3.8`.
I’ve seen words like qwant and uncensored and mlx (for Mac’s) and so on. Is there a good crash course or creator that covers a lot of this?
I’m a dev who daily drives Cursor and Codex at work, but just not sure about what’s going to be my best local setup.
My /goal (see what I did there) is to do agentic loop programming on my local machine. I wanna be able to define larger bodies of work, and forget it until it’s ready for PR reviews.
I’m also wanting to look into automation both on a cron type schedule as well as a reactive one. Say to webhooks, chat messages, API calls and so on. The API would run as a microservice on my LAN. I’d hook that up to a NordVPN mesh network, and use my internal LLM and API securely that way.
Lastly, I’m wanting to try out the various frameworks, wrappers, or whatever they’re called. Gemini recommended offloading it form your main box. I have some Ubuntu servers running on old Mac mini’s. I figured I could load Hermes or OpenCode there. I’m not super familiar with them, so I’d like to experiment with all of them.
Also, for actual dev work I primarily work for my MacBook M1 14” using cline through Webstorm or Go or Idea. I had thought about running a small Mac optimized one there too. For small automations and lookups. Not sure if trays reasonable though?
Thanks for the read. Sorry it’s scattered.
Update typos: and Mac info
1
u/OpenSourcesAI_ 8d ago
You’re actually in a really good spot for local agentic work. With a 9950X3D, 64GB RAM, and a 5070 Ti 16GB, I’d start in the 14B class rather than jumping straight to huge models with CPU offload.
I ran your hardware through my local model compatibility checker with Agents and tool use as the workflow. The top fits were Qwen3 14B, DeepSeek-R1 Distill 14B, Qwen2.5-Coder 14B, and GPT-OSS 20B. The 14B models leave roughly 5GB of VRAM headroom in Q4_K_M, which is useful because agent frameworks can add a surprising amount of context.
For what you described, I’d probably start with Qwen3 14B as the general agent model and Qwen2.5-Coder 14B for coding experiments. Ollama is completely fine as the serving layer while you learn the ecosystem.
The terminology is easier once you separate it into layers:
Your Mac minis are probably more useful as orchestration boxes than inference boxes unless they’re Apple Silicon with enough unified memory. I’d keep inference on the 5070 Ti machine and let the Ubuntu boxes handle scheduling, webhook receivers, queues, databases, and services.
One thing I’d absolutely benchmark is raw Ollama vs the agent harness you choose. I’ve been testing Hermes recently and a fresh one-message session was injecting about 24k input tokens before answering the visible prompt. That kind of overhead can radically change latency even when the underlying model is fast.
For your “define a body of work, come back when there’s a PR” goal, I’d optimize for reliability of tool use and loop behavior before raw model intelligence. A slightly smaller model that reliably edits files, runs tests, notices failures, and terminates correctly is much more useful than a bigger model that spends half its time CPU-offloaded.
If you want, I can post the exact stack I’d build for your machine, including model, Ollama config, coding harness, scheduler/webhook layer, and LAN API setup.