Ex-OpenAI’s Bold AI: 200x Faster, 400x Cheaper, No Hallucinations


📺

Article based on video by

Fireship — Watch original video ↗

Most AI companies are locked in an arms race to build models with more parameters, more training data, and more language features. But what if the breakthrough everyone needs comes from doing the opposite? A team of ex-OpenAI researchers spent two years building an AI system with deliberately fewer language features—and the results are quietly challenging everything we thought we knew about AI architecture.

📺 Watch the Original Video

What Is ‘AI Without Language’ Really About?

Let me start with a quick misconception: when people hear “AI without language,” they assume it means no text input, no text output, no communication at all. That’s not what’s happening here.

The real idea is more interesting — and more specific. This approach removes language generation from the AI’s core reasoning process while still accepting language as input and output. The system thinks in something else entirely, then translates results back into words only at the very end.

Separating Cognition from Communication

Here’s where it gets interesting. Current AI systems — the large language models you’ve heard about — conflate two very different things: cognitive operations (comparing, classifying, matching patterns) and language production (generating coherent text). When you ask an LLM to analyze data, it doesn’t “think” about the data and then describe it. It generates tokens that look like thinking. Those are not the same thing.

What if you could do the cognitive work without the language machinery? That’s what this approach does. It separates intelligence from linguistic output — not eliminating language, but treating it as a translation layer rather than the thinking itself.

Why This Architecture Matters

The 200x speed improvement and 400x cost reduction start making sense when you realize you’re not running a massive language model anymore. You’re running something optimized for a narrower set of operations.

This also explains the hallucination-free claim. If the system isn’t generating text as its primary reasoning mode, it’s working with something more constrained — and more reliable.

Sound familiar? It’s a bit like the difference between a chef who cooks from memory and one who follows a precise recipe. The recipe is predictable. The memory? Less so.

This isn’t about AI becoming less capable. It’s about AI that stops pretending fluency equals understanding.

The Hallucination Problem Is Architectural, Not Fixable

When you strip away the marketing language, here’s what most AI companies are doing with their “hallucination prevention” tools: putting seatbelts on a car that’s designed to crash. They’re building guardrails, fact-checking layers, and retrieval systems on top of a foundation that’s fundamentally probabilistic—which means it will sometimes make stuff up. That’s not a bug you can patch. It’s the system working exactly as designed.

Why retrieval-augmented generation isn’t a real solution

RAG (retrieval-augmented generation) is the most popular band-aid in the industry right now. The idea is simple: when a user asks something, you first pull relevant documents from a database, then stuff that context into the prompt so the model has something to work with.

Here’s the catch: you’re still feeding that context into a probabilistic language model. It’s still guessing what comes next. The retrieved documents are just another input to a system that was trained to predict tokens, not retrieve facts. You’ve added a very expensive library to a system that’s fundamentally guessing what to say. Some companies call this “grounding.” I call it putting training wheels on a unicycle.

What happens when you constrain output space

The real fix is architectural. If you remove language generation from the reasoning core entirely, you eliminate the source of the problem—not just manage the symptoms. Models like Jev operate in a constrained output space where hallucination becomes mathematically impossible. The system isn’t predicting what words might sound good next to each other; it’s selecting from verified, bounded outputs.

This is the difference between a GPS that occasionally makes up streets and one that only displays roads that actually exist. You’re not adding safeguards to a flawed system. You’re building a fundamentally different kind of system.

System 1 vs System 2: The Real AI Paradigm Shift

If you’ve ever asked a large language model something trivial—what year the moon landing happened, say—and watched it “think” for fifteen seconds before answering, you’ve felt the absurdity at the heart of how these systems work. Most queries don’t need deep reasoning. They need fast, accurate responses. That’s the real paradigm shift hiding in plain sight.

Why LLMs Are Trying to Be Slow Thinkers All the Time

Daniel Kahneman’s dual-process theory gives us the vocabulary here. System 1 is fast, intuitive, automatic—like catching a ball without consciously calculating its trajectory. System 2 is slow, deliberate, analytical—the mental effort of doing long division or learning a new skill.

Here’s the problem: current LLMs are built to deploy System 2 processing on everything. Every query triggers that same careful, step-by-step reasoning style, whether you’re asking it to explain quantum physics or to spell a word. It’s like hiring a research mathematician to work the register at a coffee shop. Technically qualified? Yes. Appropriately matched to the task? Absolutely not.

The irony is that these models often do give quick responses—they’ve just internally run a marathon to get there. That internal deliberation is expensive, slow, and wasteful for the majority of queries that don’t require it.

The Case for Specialized Fast Cognition

What if AI could recognize what kind of thinking a query actually needs? Some questions genuinely deserve careful analysis. Others just need a direct answer. A purpose-built system can reserve complex reasoning for when it’s actually warranted—like a GPS that gives you a quick route for simple trips but recalculates thoughtfully when traffic gets messy.

The implications are significant: 200x faster inference and 400x cost reduction aren’t just engineering wins. They represent an architectural philosophy that says “most of what you ask me doesn’t need to make me think hard.” And honestly? That’s closer to how intelligent beings actually operate. We don’t deliberate over every sentence we speak.

Sound familiar? Your brain does this constantly—switching gears between quick intuitive responses and slow careful thinking depending on what the moment demands.

The Numbers Behind 200x Faster and 400x Cheaper

When I first saw the benchmarks for Jev, I’ll admit I was skeptical. 200x faster than existing models? That sounds like marketing math. But the explanation actually makes sense once you understand what traditional large language models are doing under the hood—and how much of that work is overkill for simple cognitive tasks.

Here’s the thing: transformer architectures were designed to be general-purpose. They handle everything from writing poetry to solving math problems with the same heavyweight machinery. That’s powerful, but it means you’re firing a cannon to kill a mosquito every time you want a quick classification or pattern recognition.

What Jev appears to have done is strip away everything except what’s needed for fast, reliable thinking. No language generation. No code writing. Just the cognitive core.

Why smaller doesn’t mean less capable

This was the part that initially tripped me up. We’re conditioned to equate AI power with parameter count—more weights means smarter, right? Not necessarily.

The real insight is that transformer overhead scales terribly for straightforward tasks. When you’re just routing “does this email contain a refund request?” or “what’s the sentiment here?”, you’re still paying the full cost of attention mechanisms and massive matrix multiplications. The model is thinking hard about how to think, even when the question is simple.

Jev seems purpose-built for these System 1 tasks—the fast, automatic cognition that Kahneman describes. Think of it like the difference between hiring a brilliant generalist who over-analyzes everything versus a specialist who knows exactly when to trust their gut.

Token-free architectures and what they change

Here’s where it gets interesting. Most people focus on model size, but there’s a quieter inefficiency in mainstream AI: tokenization.

Every word or subword your LLM processes first gets mapped to tokens—arbitrary integer IDs. That mapping introduces a layer of abstraction that doesn’t actually help with many tasks. It’s useful for language generation (predicting the next token is literally the job), but if you’re not generating text, you’re paying a tax on every input and output.

Token-free approaches treat the input more directly, eliminating this translation layer. It’s a small change that compounds across millions of inferences.

Sound familiar? This is exactly what earlier sequence models did before transformers took over—and why they’re making a quiet comeback for specific use cases.

The 200x speed improvement isn’t coming from beefier GPUs. It’s architectural choices all the way down: no generation overhead, no unnecessary generality, no tokenization tax. Each layer of optimization stacks on the others until the numbers start looking impossible.

Whether this approach holds up across real-world applications is still an open question. But the math is sound.

What This Means for AI Development Going Forward

The rise of purpose-built cognitive AI

There’s a question I’ve been sitting with ever since watching this: why are we running trillion-parameter models to categorize support tickets? This isn’t a rhetorical jab — it’s the central tension this approach exposes. Most enterprise AI tasks aren’t actually language generation problems. They’re classification, comparison, decision support — cognitive work that doesn’t require poetic prose or creative reasoning.

Jev’s approach strips away language generation to focus on faster, more reliable thinking. This feels like finally asking the right question: “What should we build?” rather than just “Can we build it?” The technical gains are staggering — 200x faster inference, 400x cheaper operation, hallucination-free outputs — but the real shift is philosophical. It’s moving from “what can we do?” to “what should we do?”

When to use specialized vs. general-purpose models

Here’s where it gets practical. General-purpose models dominate the conversation because they’re versatile and commercially compelling, but consider what happens when you need to route incoming customer emails by urgency. Or flag transactions that don’t fit a user’s typical spending pattern. Or compare three vendor proposals against a 47-point criteria list.

Running GPT-4-class capability for any of these tasks is like hiring a Michelin-starred chef to make sandwiches — technically impressive, wildly expensive, and complete overkill.

Purpose-built systems make sense when reliability matters more than eloquence, when tasks are repetitive across thousands of daily instances, and when cost compounds at scale. The environmental and computational implications of running massive models for simple cognitive tasks simply don’t add up as AI becomes embedded in every business process.

This is what maturation looks like. The “can we build it?” era gave us impressive demos and genuinely useful tools. The next phase is about restraint — knowing where raw capability earns its cost and where leaner, specialized systems serve better. Sound familiar? It’s the same engineering wisdom that’s governed software architecture for decades.

Frequently Asked Questions

Why do AI models make things up (hallucinate)?

In my experience, hallucination happens because language models are essentially next-token predictors, not knowledge retrievers. When you train a system to guess what comes next in a sentence, it learns patterns that sound confident and coherent even when they’re factually wrong. GPT-3 essentially memorized patterns from human text at scale, and it has no built-in mechanism to verify whether what it’s generating matches reality.

Can AI be smart without being a language model?

What I’ve found is that language is just one interface for intelligence, not a prerequisite. You can have AI systems that process images, audio, robotics commands, or structured data without generating prose. For example, AlphaFold predicts protein structures with remarkable accuracy, yet produces no natural language at all. Intelligence in AI really comes down to pattern recognition and decision-making under uncertainty, which don’t require words.

What is System 1 and System 2 AI according to Kahneman?

If you’ve ever caught yourself driving on autopilot and suddenly realized you missed your exit, that’s System 1 thinking. Kahneman’s framework describes System 1 as fast, intuitive, and automatic versus System 2 as slow, deliberate, and analytical. Most current LLMs attempt System 2 reasoning but they’re fundamentally trained as pattern matchers, which is really a System 1 task wearing System 2 clothes.

Why are smaller AI models sometimes better than larger ones?

Smaller models often win when you need reliability over capability. A 7B parameter model won’t write poetry as well as GPT-4, but it will answer factual questions without inventing citations, and it can run on a single GPU instead of a data center. I’ve seen teams ship production applications faster with smaller models because the reduced hallucination rate means fewer customer support escalations and less need for retrieval-augmented generation pipelines.

Is the race for bigger AI models the wrong approach?

The scaling approach has delivered real breakthroughs, but it comes with massive costs and reliability trade-offs. When you’re spending millions per training run and operating costs are 400x higher than optimized alternatives, you need to ask whether raw capability actually matches user needs. For most enterprise applications, what matters is getting consistent, fast, cheap answers—not the ability to pass bar exams or write haikus.

If you’re evaluating AI systems for production use cases where reliability and cost matter more than creative language generation, it might be worth exploring whether purpose-built cognitive AI fits your needs better than another general-purpose model.

Subscribe to Fix AI Tools for weekly AI & tech insights.

O

Onur

AI Content Strategist & Tech Writer

Covers AI, machine learning, and enterprise technology trends.