Back to the blog
AI AgentsAutomationBusiness

AI agents: the ranking changed, now what?

September 04, 2026·6 min read·Diego Horvatti

You picked an AI tool six months ago. You paid for it, trained the team, wired it into the system. A new ranking came out yesterday and your choice is not in first place anymore. So now what, throw it all away?

No. But it is worth understanding what happened, because it will happen again. The Artificial Analysis AI agent ranking, which measures how well models carry out real tasks instead of just answering questions, put Qwen3.8 Max on top. It is a Chinese model, from Alibaba. It passed the names you probably know. And three months from now another one probably passes it.

That is the real news. Not which model won. It is the speed at which the podium changes owner.

What an "agentic index" is and why it matters more

The first AI rankings measured knowledge. They asked things and saw who got more right. Nice to look at, but nearly useless for someone running a company.

The agentic index measures something else: whether the model can do something. Open a system, look up a piece of data, compare it with another, make a decision, execute. A sequence of steps where every error contaminates the next one.

It is the difference between an intern who knows a lot and an intern who solves the problem alone. The first one is pleasant over lunch. The second one you do not fire.

In practice, this index answers the question that matters: can this model handle a ten step task without getting lost halfway? Because that is what your operation needs. Nobody automates "write a text". You automate "take the order, check stock, generate the invoice, notify the customer, update the spreadsheet".

What does a Chinese model in first place tell us?

It tells us the whole thing became a commodity faster than a lot of people expected.

Two years ago there was a clear gap between the leader and the rest. Today there is a pack. Five or six models fighting over decimals, trading places with every release. Some of them at prices that are a fraction of what used to be charged.

That is great for you and terrible for anyone who bet everything on a single vendor.

When the leader changes every quarter, picking the leader stops being a strategy.

There is the question of where the data runs, of course. If you are going to process sensitive customer information, the server's country matters, and it matters legally. But that is an architecture decision, not a reason to ignore what is happening. Several of these models run locally or on Brazilian cloud. I have written about that already.

The mistake I see companies make

I will be direct, because it is what comes up most in the conversations I have.

The company hires an AI tool, and the tool comes with a built in model, chosen by the vendor. There is no way to swap it. Then the model falls behind, or triples in price, and you find out your entire automation depends on a decision someone else made.

I saw a distributor build its whole WhatsApp order triage on top of a closed platform. It worked well for eight months. Then the vendor changed the plan, the cost per conversation went up, and switching meant redoing everything from scratch. They ran the numbers: about 40 days of work to migrate something that took 12 days to build.

The problem was not the choice of model. It was not leaving the door open.

How to build automation that survives the next change of leader

The rule is simple: the model is a part, not the foundation.

What makes your automation work is not the model. It is what surrounds it:

  • The data. Where the information comes from, how it arrives clean, who maintains it.
  • The rules. What the agent can and cannot do. Where it stops and calls a human.
  • The tests. A set of real cases from your company that you run against any new model.
  • The swap point. A single place in the code where the model is chosen.

If those four are in place, changing models takes an afternoon. You take the new ranking leader, run your thirty test cases, compare result and cost, and decide. No drama.

If they are not, every swap is a project.

The swap point is the cheapest part and the one most people skip. Concretely: instead of scattering model calls across fifteen files, you concentrate them in one. The rest of the system talks to that one. Changing the engine becomes changing a line. It costs almost nothing to do at the start, it costs weeks to do later.

And the tests? How do you know the new model is better for you

Public rankings measure generic tasks. Your company is not generic.

Build your own set. It does not need to be sophisticated. Take 20 to 40 real cases that already happened, with the right answer that you already know. Confusing orders, ambiguous emails, invoices with missing data. The situations that cause trouble.

Then, when a new model comes out, you run the 30 cases and look at three numbers:

  1. How many it got right. Obvious, but it needs to be written down.
  2. How much it cost. Add up the cost of the 30 and multiply by your monthly volume.
  3. How long it took. If the customer is waiting for an answer on WhatsApp, 40 seconds is different from 4.

A model that gets 2% more right and costs three times as much is not better for you. It is better in the ranking. Those are different things.

I have seen a cheaper model beat the "best in the world" on a specific invoice data extraction task, simply because the task was narrow and the expensive model burned reasoning for nothing. The ranking did not know that. The 30 cases did.

What to do this week

If you already have some AI automation running, three questions:

Do you know which model is behind it? If the answer is "I think it is OpenAI's, but I am not sure", that is already a signal.

Can you swap it? Ask the vendor or whoever built it. If the answer comes back with "well, we would have to redo it", you know the size of the risk.

Do you have a way to compare? If nobody ever wrote the test cases, write them. An afternoon with the people who do the work by hand, listing the cases that usually cause problems. It is the most durable asset in the whole project, because it survives any model swap.

And if you have nothing running yet, great. You start with the right structure already, without anyone else's technical debt.

The ranking will change again. Probably before Christmas. The question is not who will be on top. It is whether, when that happens, you will read the news with fear or with curiosity.

If you want to talk about how your automation is put together, or how to build one that does not lock you in, take a look at who I am and send me a message.

LinkedIn summary

You picked an AI tool six months ago. A new ranking came out yesterday and it is not in first place anymore.

So now what, throw it all away?

No. But the message is clear: the podium changes owner every quarter. Picking the leader stopped being a strategy.

What keeps your automation alive is not the model. It is the data, the rules, the tests with real cases from your company and a single place in the code where the model gets swapped.

With that in place, migrating takes an afternoon. Without it, every swap turns into a 40 day project.

If you want, reach out and let's talk about how yours is put together: three questions are enough to size up the risk.

#ArtificialIntelligence #AIAgents #Automation #DigitalTransformation #Technology