Qwen3.8-27B ran a 2 hour autonomous coding session and cloned Grok Bot. Its context management surprised me
Qwen dropped 3.8 27B yesterday, so I rented an NVIDIA H200 to see how far the 27B could go on a real coding task in a powerful GPU like that.
Setup
- Qwen3.8-27B, served with vLLM
- 129GB VRAM allocated (weights + KV cache preallocation)
- 64k context window
The target codebase is Agent Zero and its sidebar. But this post is about the model, the same run should transfer to any decently structured codebase
I gave it one screenshot of our sidebar and a short prompt: turn the chat list into a WhatsApp-style list of agent profiles, avatar circle on the left, one persistent chat per profile. We don't have a plan mode in Agent Zero, but Qwen started planning first, and then executed it across 1h49m of continuous work (only one nudge because it couldn't get past the login screen with the masked password, fair)
The interesting part: 64k is nowhere near enough to hold the codebase, so it kept re-reading files right before editing them to make sure they were actually in the context window. It never edited from a stale memory of a file. That level of context discipline is something I mostly associate with much larger models and it was impressive
Anyone else tried it? Curious how it compares for you against much bigger models or even hosted frontier models on multi-hour tasks. This may be one of the best local AI models out there.