18 February 2026 · Matthieu MALVACHE · 7 min
Open-Source AI Is Catching Up Fast
In early 2025, a Chinese lab most people had never heard of released a reasoning model that matched OpenAI's o1 in math and coding. They reported roughly $5.3 million in compute costs for the final training run - though that figure covers GPU hours only, not R&D, failed experiments, or the $51M+ hardware investment. For context, frontier models from the big labs reportedly cost tens of millions to train, sometimes more.
DeepSeek R1 didn't just compete. It did so with 2,048 GPUs where others use 16,000+. And they open-sourced the whole thing under MIT license.
The closed-model dominance we've taken for granted? It's no longer a given.
What DeepSeek R1 actually achieved
Let me be specific, because the benchmarks matter here.
DeepSeek R1 hit 79.8% on AIME 2024 (the American Invitational Mathematics Examination), matching OpenAI o1's 79.2%, and 97.3% on MATH-500. These aren't cherry-picked results on obscure tests. These are the benchmarks the industry uses to measure reasoning capability.
The model uses a technique called reinforcement learning to develop reasoning chains - essentially teaching the model to think step by step without requiring human-written examples of the reasoning process. DeepSeek documented the full approach. Anyone can study it, replicate it, build on it.
They also released six smaller distilled versions based on Llama and Qwen architectures. The 32B distilled version (DeepSeek-R1-Distill-Qwen-32B) outperforms OpenAI's o1-mini on multiple evaluations. A 32-billion parameter model you can deploy on your own hardware, outperforming a commercial product. Think about that for a second.
It's not just DeepSeek
What makes this moment different from previous "open source catches up" claims is that it's happening on multiple fronts simultaneously.
Qwen from Alibaba keeps accelerating. The Qwen 2.5 family was already competing with GPT-4o, and since then Alibaba shipped Qwen 3 (April 2025) with hybrid reasoning across dense and MoE architectures, followed by Qwen 3.5 (February 2026) at 397B parameters with 201-language support. All under permissive licenses.
Mistral Small 3.1 landed in March 2025. A 24-billion parameter model that runs on a single RTX 4090 or a Mac with 32GB RAM. It does 150 tokens per second, handles 128K context, and includes image understanding. Apache 2.0 license. Two years ago, you needed a cluster to get this kind of capability. Now it runs on your laptop.
DeepSeek V3 keeps evolving. V3-0324 incorporated reasoning improvements from R1, and V3.2 (December 2025) pushed further. The iteration speed is remarkable.
Why this matters beyond benchmarks
I could throw more numbers at you, but the real story isn't about numbers. It's about what these models make possible.
Self-hosting becomes viable
When the best open models were clearly worse than GPT-4, the self-hosting argument was hard to make. "Yes it's private and cheaper, but the quality gap is too wide." That argument is collapsing.
DeepSeek R1 handles reasoning, Qwen 3 covers general capabilities, and Mistral Small delivers efficient inference. These models are good enough that the quality tradeoff is marginal for many real-world use cases. Meanwhile, you get full data control, no per-token billing at scale, and no dependency on a provider's uptime or policy changes.
For regulated industries - healthcare, finance, legal - the ability to deploy a frontier-quality model entirely within your infrastructure changes everything. You can't send patient records to an API endpoint. But you can run inference on your own servers.
The cost equation flipped
DeepSeek reported $5.3 million in compute for R1's base model. Run the numbers on what it costs to use a commercial reasoning API at scale. For many companies, self-hosting an open model pays for itself within months.
This isn't theoretical. I've helped clients calculate the break-even point. If you're making more than a few thousand API calls per day, the math starts to favor self-hosted open models. Add in the latency benefits of local inference (no network round-trip) and it gets even more compelling.
The talent pool widens
When models are open, researchers and engineers everywhere can study them, improve them, fine-tune them for specific tasks. DeepSeek's RL training technique is already being adapted by other labs. Distilled versions of their models run on consumer hardware, meaning individual developers can experiment with reasoning-capable AI.
This is how Linux won the server market. Not through any single company but through thousands of contributors making improvements that compound over time.
What I watch for in open models
Not all open-source AI is created equal. Here's what I evaluate:
License matters. MIT and Apache 2.0 mean you can use the model commercially without restrictions. Some "open" models come with non-commercial clauses or custom licenses that limit real-world use. DeepSeek R1 is MIT, Mistral Small 3.1 and Qwen2.5-VL are Apache 2.0 - all genuinely open for commercial use.
Reproducibility is another differentiator. DeepSeek shared their training methodology, which is unusual and valuable - the community can verify claims, identify weaknesses, and build improvements. Models released without training details are harder to trust.
Hardware requirements determine practicality. A 671B parameter model might have great results, but if it needs eight A100s to run, it's only "open" for companies with serious GPU budgets. The distilled and small models (DeepSeek-R1-Distill at 32B, Mistral Small at 24B) are where practical value lives for most teams.
And fine-tuning support: can you adapt the model to your domain? Open weights are table stakes. Open training code and clear fine-tuning documentation make the difference between a downloadable demo and a production tool.
The practical path forward
If you're running a business and wondering what to do with all this:
Don't wait for "the best" model. There won't be one. The landscape shifts every few weeks. Pick a model that's good enough for your use case, deploy it, and improve from there. Qwen 3 and Mistral Small are solid general choices.
Start with a specific use case. "We want to use open-source AI" isn't a strategy. "We want to automate our internal document summarization without sending data externally" is. Narrow scope leads to faster results.
Plan your infrastructure. Deploying models locally requires GPU compute. If you don't have it in-house, there are dedicated inference providers that host open models at a fraction of API costs. The middle ground between "full self-hosted" and "send everything to OpenAI" is wider than most people think.
And keep watching. Meta's Llama 4 shipped in April 2025 with multimodal Scout (109B) and Maverick (400B) models. Qwen 3 brought hybrid reasoning to open weights. The pace isn't slowing down. What's frontier today is baseline tomorrow.
If you're looking to integrate open-source LLMs into your workflows, now is the time. The models are capable, the tooling is maturing, and the cost advantage is real. The floor is rising fast: open-source AI just crossed the threshold from "interesting experiment" to "credible production option." The only question is whether you build on open foundations or stay locked into closed APIs.
What's next?
For the fundamentals on AI agents: start here. And if you want to host these models yourself, check out the practical guide.