
Last week I shipped a feature I would normally have scoped at a full engineer-month. It took four days and cost $218 in inference. Here is what happened, and why I think fast open models are quietly changing how senior engineers work.
Using glm-5p2-fast through FireConnect on Claude Code, I designed, planned, and implemented a "reclaim" capability for our GPU scheduler in about four days of my own time. The result was a stack of four PRs, roughly 3,000 lines of code, 16 unit tests, and 18 integration tests all passing, CI green and ready for review. Total inference cost, per the Fireworks dashboard: $218. The comparable effort in the past would have been about one engineer-month.
I wanted to add a reclaim capability to our GPU scheduling system.
The mental model is Linux page cache. The kernel treats free RAM as wasted RAM: it fills idle memory with cache to speed everything up, but the instant an application actually needs that memory, the kernel hands it back. No negotiation, no delay. I wanted the same property for GPU capacity: put otherwise-idle capacity to work, while preserving the guarantee that protected placements take precedence the moment they need to.
This sounds close to Kubernetes preemption, but the hard part was in the details: deciding which work was actually safe to move, keeping our internal accounting consistent, and making those decisions correctly while the world was changing underneath the scheduler.
This is not a toy feature. It was hard for five reasons:
In other words, exactly the kind of work where you would expect a model to fall over and a human to spend weeks.
I ran the project in three phases, with GLM 5.2 as a partner in each.
I started by using GLM 5.2 as a design partner, iterating on where the reclaim logic belonged in the scheduling path and how it should interact with normal placement decisions, until both my teammates and I were happy with it.
Historically this phase alone takes me about two weeks: reading code, talking to people, researching how the industry solves it, authoring the design doc, and running design reviews.
Reality is that even in 2026, context switching is a major challenge to eng productivity. Everyone interacts with AI now, and most of us have quietly accepted a workflow of 8+ tabs, each with an agent that needs babysitting, swapping our own mental state in and out like an oversubscribed CPU. The fix is to make it so fast that switching isn't worth it. At roughly 400 tokens per second, GLM 5.2 Fast answers before my attention has anywhere else to go. Even with a frontier closed model like Opus, this phase would have taken two to three days, mostly spent waiting and swapping back in. With GLM 5.2 Fast, I got to a reviewed, agreed design in one.
Next I moved into a planning phase and iterated the implementation plan to a "ready to implement" state. I work spec- and test-driven, so I had GLM 5.2 compose the test surface up front: 16 unit tests and 18 integration tests, covering every corner case I could think of. Locking down 34 tests before writing implementation code is what makes the next phase safe to hand off.
GLM 5.2 then implemented against that plan, producing a stack of four PRs totaling around 3,000 lines of code, with all 34 tests passing and CI green, on a modest amount of direction from me.
The mechanism here matters: GLM 5.2 and Claude Code loop against a concrete goal, that all 34 tests must pass, and keep iterating until they get there. GLM 5.2 Fast is quick on its own; most of the wall-clock time in this phase was the integration tests themselves running each iteration, not the model thinking.
For a project I would normally budget at one engineer-month, this took about four days of my time, and the total inference cost was surprisingly low at $218.

A few observations on why it worked:
The setup is a one-time change to point Claude Code (or your harness of choice) at Fireworks through FireConnect, then select the fast GLM 5.2 path:
12
The model ID for the fast path is:
accounts/fireworks/routers/glm-5p2-fast
GLM 5.2 Fast runs 2 to 3x faster than the standard path on shared serverless, keeps the full context window, and rewards cached input heavily, which is what makes long agentic coding loops practical and cheap. More on the serving details in GLM 5.2 Fast is live on Fireworks.
The headline number is real: an engineer-month of work in four days for $218. But the takeaway I keep coming back to is about more than just speed or cost or quality. It's the full combination. Because GLM 5.2 produces design and code quality that I actually trust, and likewise at a speed and cost that lets me to stop self-regulating, I can actually feel fully productive. The promise of AI was supposed to take the drudgery out of engineering, and instead a lot of us traded typing for tab-juggling, waiting on slow agents and paying switching costs with our own attention. This project convinced me that the promise is now real. When the model answers before you can reach for another tab, you stay focused. Four days instead of a month is what that feels like.
Thanks to the FireConnect team for making this possible, and thank you for reading.
