
I stopped treating local LLMs as a side project and started routing real product work through them.
I'm building InnerOS / InnerOps, a local-first control plane for running development and operational work through AI agents without sending every task to cloud APIs.
The basic idea is simple:
I received a Radeon AI PRO R9700 (gfx1201, 32 GB VRAM) after finishing 10th in the AMD Dev Quest at AMD Advancing AI in San Francisco on July 22–23.
That was the push I needed to stop treating “local inference” as a weekend experiment and make it part of the development loop.
AMD node
Intel node
Routing
Supporting services
The biggest improvement was not raw tokens/sec.
My previous vLLM container was named as if it were ROCm 10. When I inspected the actual runtime, it was still ROCm 7.14, PyTorch 2.11 and vLLM 0.23.x.
That was a useful lesson:
Container names are not evidence. torch.__version__ is.
I cut over to the official ROCm 10 stack and made the serving layer persistent.
Since then I have also:
| | Old path | Current |
| ---------------- | ------------------------------------ | --------------------------------------------------- |
| Stack | ROCm 7.14 / vLLM 0.23 / PyTorch 2.11 | ROCm 10 / vLLM 0.27 / PyTorch 2.12 |
| Operations | manual Docker | systemd-managed |
| Smoke throughput | ~25–40 tok/s mixed | ~19–41 tok/s prompt-dependent |
| Main gain | local inference worked | local inference is part of the development workflow |
The throughput did not magically double.
The win is reliability, routing and utilization.
The GPU is now doing useful work for hours instead of appearing in benchmark screenshots once a week.
32 GB means one large model at a time.
VRAM budgeting is part of the architecture.
The infrastructure is also ahead of the visible product. The browser portal and the real Workforce product integration still need work.
And multi-IDE coordination is messy. Durable inboxes, ops tasks and evidence help, but this is still early software rather than a polished “autonomous company” fantasy.
The initial market is SMB operations in Ecuador/LATAM: workforce, quotes, WhatsApp operations and internal company workflows.
The bet is that local-first AI can reduce recurring model spend and keep more sensitive operational work on owned infrastructure, while still using Gemini or other cloud models for specialized lanes when there is a real reason to pay for them.
One thing I’m increasingly convinced of:
The interesting benchmark is not tokens per second. It is how many hours per day the hardware becomes useful enough that you trust it with real work.
The InnerOS repository is currently private, so I’m not using the GitHub link as a public proof point yet.
I’m building in public from the server rack upward and will keep sharing the parts that are actually verified.
If you’re running vLLM on consumer AMD hardware at roughly 30B scale, I’m especially interested in comparing notes on VRAM budgeting, AWQ/MoE behavior and long-running agent workloads.
Building a local-first AI ops platform sounds like a fascinating endeavor, especially with the growing need for efficient data processing on-premises. In my journey with a project that integrates AI into content strategies, I've experienced some common roadblocks that might resonate with your work.
When developing a system that relies on local computation, one challenge you may face is ensuring smooth performance without the vast resources cloud solutions can offer. I've dealt with this by focusing on optimizing algorithms for local execution. For instance, by leveraging lighter models and more efficient data handling, we managed to reduce inference times significantly, which is crucial for real-time applications. In our case, reducing latency improved user engagement metrics by nearly 30%—important when processing large amounts of content.
Another consideration is user onboarding and support. With so many tools relying on cloud environments, getting users comfortable with local installs can be a hurdle. Providing clear documentation and engaging with users through a forum or community channel has proven invaluable. We saw a significant reduction in support tickets when we created concise setup guides and shared user-generated tips.
Lastly, don’t underestimate the value of benchmarking performance. When we first launched, we made the mistake of not adequately testing our tools against various workloads. Once we implemented consistent benchmarking, we gathered actionable insights that led to continuous improvements in performance and user satisfaction.
As you develop InnerOS / InnerOps, keeping these points in mind could enhance both your product and user experiences. Good luck with your build!
The shift from measuring tokens/sec to measuring human time returned is the interesting part.
Curious whether the local-first setup is already producing a measurable workflow advantage, or if that’s still mostly an infrastructure hypothesis.