Have We Reached AGI? A Reality Check on LLMs

Everyone's talking about Artificial General Intelligence (AGI), but the hype is outrunning the reality. This is a practical look at what today's AI models can and can't do, and why AGI might be the wrong goalpost anyway.

June 4, 2026 · 4 min read · SuperThinking team

A conceptual image of a human brain formed by glowing blue circuit pathways.

No. We have not reached AGI.

Now that that's out of the way, let's talk about why so many smart people are claiming we're on the verge. The latest models from OpenAI, Anthropic, and Google are legitimately stunning. They feel like a step-change in capability, and it's easy to mistake fluency for consciousness.

But they are not thinking beings. They are incredibly sophisticated pattern-matching machines, predicting the next word in a sequence based on trillions of examples from their training data. Understanding the difference is key to actually using them well, instead of just getting caught up in the hype.

What Today's Models Can Actually Do

Don't get me wrong, these tools are revolutionary. Calling them 'just' pattern-matchers undersells their utility. If you treat them as super-powered assistants—brilliant, fast, but with zero real-world experience—you can accomplish amazing things.

They excel at accelerating human-led tasks. For example, you can take a tedious task like sorting and resizing images and offload the script-writing entirely to an AI.

Here’s a prompt I gave to Claude 3 Sonnet:

Write a Python script that does the following:
1. Watches a folder named 'source_images'.
2. When a new JPG or PNG is added, it creates a 500px wide version in a 'thumbnails' subfolder.
3. It also creates a 1200px wide version with a subtle watermark in the bottom right in a 'web_versions' subfolder.
4. Deletes the original file from 'source_images' after processing.
5. Use the Pillow library.

In about five seconds, it produces a perfectly functional script that would have taken me 20-30 minutes of searching Stack Overflow and debugging. That's real, tangible productivity.

They are also masters of synthesis. You can drop a 100-page academic paper into a model like GPT-4 and ask for the five key arguments and their counterpoints. This ability to chew through unstructured data and return organized information is a superpower.

This is where we are today: AI as an incredible force multiplier for human intelligence. Not a replacement for it.

A close-up of a white porcelain mask that is cracked, revealing intricate clockwork gears inside.
A close-up of a white porcelain mask that is cracked, revealing intricate clockwork gears inside.

The Cracks in the Facade

The illusion of understanding shatters when you push the models outside the patterns they know. They lack the fundamental grounding and reasoning that we take for granted.

First, they have no physical intuition. An LLM can write you a poem about the taste of a fresh strawberry, pulling from all the descriptions of strawberries it has ever read. But it has never tasted one. It has no concept of 'red', 'sweet', or 'juicy'. This complete lack of sensory experience, or grounding, is a massive gap between its processing and human cognition.

Second, they struggle with novel logical puzzles. They can solve riddles that are all over the internet because the answers are in their training data. But give them something simple and new, and they short-circuit.

Try this:

I have a bat and a ball. Together they cost $1.10. The bat costs one dollar more than the ball. How much does the ball cost?

Many powerful models still get this wrong, answering 10 cents. They see the numbers and perform a simple, intuitive-but-wrong subtraction. The correct answer is 5 cents. A human might make the same mistake initially, but they can stop, think through the logic, and correct themselves. The LLM is just following the most-trodden statistical path.

Finally, there's the hallucination problem. Models confidently invent facts, citations, and sources. This isn't a bug that can be patched; it's a core feature of a system designed to generate plausible text, not to verify truth. It prioritizes what sounds right over what is right.

A cluttered workbench in a workshop, filled with tools, wires, and unassembled robotic components.
A cluttered workbench in a workshop, filled with tools, wires, and unassembled robotic components.

AGI is a Useless Benchmark

The whole debate about AGI is a distraction. It's a poorly defined, moving goalpost inspired by science fiction. Chasing it is far less important than asking a simpler question: is this tool useful for the task I have right now?

Nobody asks if their pocket calculator has achieved Artificial General Math Intelligence. You don't care. You just want it to do arithmetic correctly. We should treat LLMs the same way. They are tools, not creatures. Incredibly flexible, powerful tools, but tools nonetheless.

The obsession with AGI does two damaging things:

  • It creates hype and unrealistic expectations. Companies start to believe they can replace all their human workers with a single magical AI, which leads to bad decisions and brittle systems.
  • It creates unnecessary fear. The discourse shifts to terminator-style doomsday scenarios instead of focusing on the very real, present-day challenges of AI ethics, bias, and reliability.

We would all be better off if we dropped the AGI label and focused on building specific, verifiable, and reliable AI systems to solve real-world problems.

So, What Now?

Instead of waiting for a mythical AGI to arrive, the smart money is on building agentic systems. These are workflows that use LLMs as a component—a kind of reasoning engine—but combine them with other tools, data sources, and human oversight.

Think of an agent that can monitor your email for invoices, extract the key details, cross-reference them in a database, and then stage a payment for your approval. The LLM is just one piece of that chain, responsible for the natural language understanding part. The rest is good old-fashioned software engineering.

The most interesting work in AI today isn't happening in the race to AGI. It's in the practical, messy business of hooking these powerful models up to the real world in a way that is safe, reliable, and genuinely useful.

Stop worrying about whether the machine is alive. Start building.