Archive of

Qwen3.6-35B-A3B Runs on a 16 GB GPU for Local Coding Agents

Running a 35-billion-parameter model on a single consumer graphics card usually means compromises. A new open source project called FastLocalAI tries to keep those compromises small. It's a tuned setup for running Alibaba's Qwen3.6-35B-A3B on an NVIDIA GPU with just 16 GB of VRAM, paired with the OpenCode coding agent.

The project is available on GitHub at https://github.com/24high/FastLocalAI. It uses llama.cpp's llama-server and moves part of the model into regular system memory so the rest fits on the card.

Why the model doesn't fit and how it works anyway

Qwen3.6-35B-A3B is a Mixture-of-Experts model. The quantized Q4_K_M version from Unsloth, which the project uses by default, is about 22 GB. That is too large for a 16 GB card.

Read More


What a Context Window Is, and Why It Matters

Every large language model works with a fixed amount of text at a time. This limit is called the context window. It includes everything the model can see in a single exchange: your instructions, any documents you share, earlier messages in the conversation, and the reply it is writing.

Measured in tokens

Context windows are measured in tokens, not words. A token is a small piece of text, often a short word or part of a longer one. When a conversation grows past the limit, the oldest material drops out of view or has to be shortened. The model does not keep it anywhere else. For that exchange, it is simply gone.

Read More


Open-Weight AI Models: Why Companies Bring Them In-House

Open-weight models are improving quickly, and that progress is changing how organizations approach AI. A growing number of companies are no longer relying only on externally hosted services. Instead, they are running smaller models on their own infrastructure.

Privacy and Cost Drive the Shift

Two motivations stand out. The first is privacy. When a model runs on a company's own hardware, sensitive data stays inside its environment. The second is cost. For many workloads, a compact self-hosted model can be a more economical choice than paying for access to a larger external system.

The Core Tradeoff: Quality vs. Control

Read More