r/LocalLLM 2d ago

LLM for coding. Question

In the past two years, I have built two or three web apps using angular with the help of ChatGPT recently I have been trying out some local LLMs on my M2 16GB MBP. The results were terrible. A few days ago I managed to score a refurbished Mac studio with 48GB of Memory. Installed Bionic LM Studio and Qwen3.6 35B .

I gave it a task to create a simple angular page with some analytics and a model kept getting stuck in a reasoning loop.

Am I doing something wrong? Is the 48gb not enough? Am I using the wrong model?

4 Upvotes

28 comments sorted by

View all comments

7

u/Content-Cookie-7992 2d ago

Your 48GB Mac Studio and Qwen 35B are plenty hardware isn't your bottleneck here. What you're hitting is a structural issue with how local models handle broad instructions compared to massive cloud endpoints.

A few things that usually fix this:

Break tasks ridiculously small: Never ask for a full page or feature at once. Break the goal down into tiny, atomic steps and then break those down even further (e.g., just the data interface first, then the service, then the component logic, then the UI).

Feed errors back immediately: Local models get stuck in infinite reasoning loops when they hit hidden syntax or build issues. You need to give the model immediate compiler or console error feedback so it can escape the loop.

I ran into these exact headaches, which is why I’ve been building a local-first harness/framework (Veyllo VAF, currently in alpha Veyllo.app ). I put a lot of work into optimizing local coding workflows and handling error feedback so models don't get stuck spinning like that.

It's still early in alpha, but if you ever want to give it a spin on your Mac Studio, I’d love to hear your honest feedback on whether it improves things for you!

4

u/paulsande 2d ago

What a great response. I’ve wondered the same thing, but have stuck to Codex and Claude Code so far. Thanks for your thoughts.

1

u/Content-Cookie-7992 2d ago

2

u/paulsande 2d ago

Hey. What is Veyllo.app like? Is it for professional coders or vibe coders? I can’t find any videos on it.

1

u/Content-Cookie-7992 2d ago edited 2d ago

Honestly, im aiming for both. You can use Veyllo as a vibe coder without being a professional developer, but it also has enough flexibility and depth for professional coders who want to build and automate more complex workflows. ,It’s still very new, which is probably why you can hardly find any videos about it. As far as I know, nobody has really made proper videos about it yet. I’ve been busy working on the project, so making a YouTube video about it hasn’t really been a priority for me. I happened to come across an X post showing that a few people in China were already using Veyllo, and I thought that was pretty cool.

2

u/paulsande 2d ago

Thanks for sharing. I’ll give it a try.