Earlier quoted context omitted.
My experience with smaller models, in this case specifically GPT 5.4 Mini, is that they cannot two-shot moving a 10-20 line code change to another file without modifying it and introducing bugs. I did not expect perfect reliability, but I thought they could at least get it right on the second attempt once you point out the difference. No such luck, it confidently tells you that now the code is the same, with yet anot…
Is it not faster to just do that move yourself instead of asking the clanker to do it?
Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
441–450 of 620 posts
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#442I have! I care about data privacy and LLMs being free. I'm using the Pi coding harness but containerized and sandboxed, to make sure it's running completely offline. On my Mac Studio with 128GB RAM (or MacBook with 36GB RAM) I'm using Qwen3.6 35b, with only 3b active parameters so that it runs really fast. I've done a complete redesign for my website's homepage and blog with Django + Wagtail. The latter is interestin…
This is very similar to my setup. Pi in a container (I do let it have network access, just no access to creds or anything, only the one directory that I'm working on at the time and my ~/.pi directory), talking to llama.cpp in another container. I'm on a Strix Halo 128 GiB unified memory laptop. I've never used the frontier models in earnest, I don't believe in using proprietary tools for my programming, so I can't r…
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#443Earlier quoted context omitted.
Christ GPU prices have gotten crazy How do AMD cards perform with LLMs? A 9070 is sold for ~$600 and has 16GB VRAM
In my personal experience, I wouldn't bother with 16GB cards for coding -- the useful models are _slightly_ too large to work at any reasonable speed
In a quickly moving field, it's amazing how much money one can save by overcoming FOMO and not living on the bleeding edge. It's like waiting for Steam sales, the games will be just as good.
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#444Earlier quoted context omitted.
Same here, I use Qwen 3.6 27b (Q6 quant) with llama.cpp on an RTX 5090 using the pi agent exclusively now. The fact that it's local means that I never have to think about token pricing, quotas, time of day, or data sensitivity. I have limited the GPU from 600W to 450W which means the system stays whisper quiet during inference. I have become so "lazy" (in a good way), so far that I've started using the model for lots…
What context length and kv cache quant (if any) are you using? And MTP?
--temp 0.6 --top-p 0.95 --top-k 20 --min-p 0.00 --presence-penalty 0 --metrics --jinja --chat-template-file chat_template.jinja --chat-template-kwargs '{"preserve_thinking": true}' --spec-type draft-mtp --spec-draft-n-max 2 --spec-draft-p-min 0.75 -ngl 99 -c 131072 -fa on -np 1 -hf unsloth/Qwen3.6-27B-MTP-GGUF:Q6_KRe: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#445Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#446Plus, you now have zero-data retention models, so the privacy argument has kind of faded.
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#447I don't think you're going to get many "true" answers to this. The opportunity cost of not using the latest and best models is just too much right now. Every month I research this and come to the same conclusion: the time, effort, and cost required to get local models (and the coding tools around them) to perform even close to Claude Code with sonnet/opus just not worth it right now. If it was, it would be distributi…
At my current pace it would take me until sometime late 2030 to spend the same amount in gpt5.5 tokens.
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#448- smarter models to create tasks
- local qwen3.6:36B for tasks execution
here is how in details https://news.ycombinator.com/item?id=48520757
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#449For personal needs I connected VSCode with llama.cpp running Qwen 3.6 27B or Gemma 4 31B and it's good enough to cancel my cloud subscription. Qwen running on my 1st GPU at q4@176k context from 70 to 50 tok/s with MTP, pretty good for coding. Gemma on the other hand is using both GPUs, running q8@64k context, doing document sentiment analysis, summarization, proofreading and translating, at consistent 25 tok/s. Somew…
What extension do you use in vscode to connect it to local llama.cpp? Or do you auth with github copilot and then point to localhost? Or something else?
``` [ { "name": "http://127.0.0.1:8888/v1", "vendor": "customendpoint", "apiKey": "llama.cpp", "models": [ { "id": "gemma4-31b", "name": "Gemma 4 31B", "url": "http://127.0.0.1:8888/v1/chat/completions", "toolCalling": true, "vision": true, "maxInputTokens": 65536, "maxOutputTokens": 8192 }, { "id": "qwen3.6-27b", "name": "Qwen 3.6 27B", "url": "http://127.0.0.1:8888/v1/chat/completions", "toolCalling": true, "vision": true, "maxInputTokens": 180224, "maxOutputTokens": 8192 } ] } ] ```
[0] https://code.visualstudio.com/blogs/2025/10/22/bring-your-ow...
Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?
#450I wish I could. But, the hardware requirements are just too expensive for me.