Live data from Hacker News

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

news.ycombinator.com

591–600 of 620 posts

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#591
post #568

Earlier quoted context omitted.

I tried a bunch of stuff with step 3.5 and step 3.7 maybe not as much as you. Could you tell me what parameters and launched you’re using ? Antirez ds4 flash q2-q4 works almost out of the box for me

To be fair: if you're happy with ds4 then IMO stick with it! Step 3.7 is notably better than 3.5 1. Use the official StepFun GGUF, IQ4_XS - theirs is better tuned in my experience than the other quants 2. Temp 1.0 top_p 0.95 sampling parameters for reasoning/agentic coding 3. It's really quite important that you don't quantise the KV cache: it made a surprising amount of difference to the looping and over thinking I…

Thank you so much !

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#592

I 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…

What IDE do you use? How do you integrate it? I was using Continue but it exited its funding round to the Titler octopus and the Chat function in VSCode is choking on the Ollama responses.

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#593

My experience is that it's not the models themselves that are limiting right now, it's the clunky alternative harnesses with weird missing features making for bad ergonomics around stuff like queue management, interruption, subagents, goals, etc.

Pi is decent. I've used the cli agents for claude, cursor, and pi, plus several custom harnesses I've written myself from time to time as experiments (and I guess technically gastown, if we're calling that a harness). Pi is... just fine. It does what I need it to, has a decent selection of tooling out of the box, integrates nicely with other tools, and generally gets out of my way enough that I don't think about it m…

I've heard good things about pi. The reliance on npm freaks me out though, so I've been avoiding it, but may need to just give in.

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#594

I 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…

What IDE do you use? How do you integrate it? I was using Continue but it exited its funding round to the Titler octopus and the Chat function in VSCode is choking on the Ollama responses.

That's precisely why my agent use is IDE-agnostic: I run Pi in any terminal. Often use it with the terminal inside VSCodium, though sometimes in a terminal outside an IDE if I don't expect to edit any files myself (e.g. for small one-shot projects).

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#596

About 90% of my coding is on Qwen 3.6 27b and Open Code with some custom skills and Semble. It is NOT as smart as CC or Codex but its enough to get most of my work done. I didn't set out to replace CC and Codex (I have an RTX 6000 so the TPS is faster than I care about, but the RTX 6000 was originally for other work). I only tried this just to see how close you could get to a frontier model for coding as an experimen…

I have a very similar setup: OpenCode, Qwen3.6-27B (llama-server with an RTX 5090). It works well for my purposes. As a semi coding luddite, I use it for mundane tasks.

Re: Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

#597

Always a bit disappointed in the details in these kinds of threads. When you do get answers, they're never specific enough to try out on your own. It'll be something like "I use Qwen 3.5 and get great results!" OK but what quantization are you using? What llama parameters? What context size? What GPU are you running it on, and how much VRAM does it have? Are you hosting it on a separate box, or running it locally on…

My LLM host is a Framework Desktop 128GB (Ryzen AI 395) with an RTX 5090 (Minisforum DEG1 dock, cheap Oculink card plugged into the PCIe 4.0 x4 slot). I run llama-server (b9296 compiled for CUDA) using a systemd service, and its configured as:

    # server-2.env
    LLAMA_ARGS="--host 0.0.0.0 --port 8082 --sleep-idle-seconds 1800"
    LLAMA_ARG_MODELS_MAX=1
    LLAMA_ARG_MODELS_PRESET=/usr/local/etc/llama.cpp/models-2.ini

    # models-2.ini
    [*]
    device = CUDA0
    fit = on
    cache-type-k = q8_0
    cache-type-v = q8_0

    [Qwen3.6 27B It Q6]
    model = /mnt/data1/llm/huggingface/hub/models--unsloth--Qwen3.6-27B-GGUF/snapshots/82d411acf4a06cfb8d9b073a5211bf410bfc29bf/Qwen3.6-27B-UD-Q6_K_XL.gguf
    alias = qwen3.6-27b-it:q6
    ctx-size = 200000
    temp = 0.6
    top-p = 0.8
    top-k = 20
    min-p = 0.0
    presence-penalty = 1.5
    repeat-penalty = 1.0
    chat-template-kwargs = {"enable_thinking":false}
I use the model from a sandboxed OpenCode using the @ai-sdk/openai-compatible plugin. And I'm using an SSH tunnel from home to work to expose llama-server to OpenCode.
Post reply on HN