AI Agent Outputs Garbage? The Problem Is You're Not Willing to Burn Enough Tokens

marsbitDipublikasikan tanggal 2026-03-23Terakhir diperbarui pada 2026-03-23

Abstrak

The core argument is that the quality of an AI Agent's output is directly proportional to the number of tokens invested in the process. More tokens lead to fewer errors, as they allow for deeper reasoning, multiple independent attempts, self-critique from fresh contexts, and verification through testing. This approach can solve problems of scale and complexity but fails when facing novel problems not present in the model's training data. For such novel challenges, human domain knowledge and guidance are essential. Two practical, immediate solutions are proposed: implementing an automatic review cycle (WAIT) for the Agent to repeatedly critique and fix its work, and establishing frequent verification checkpoints (VERIFY) where a separate Agent validates outputs to catch errors early. The key takeaway is that insufficient token investment is often the primary reason for poor Agent performance, not the underlying framework.

Author: Systematic Long Short

Compiled by: Deep Tide TechFlow

Deep Tide Intro: The core argument of this article is just one sentence: The quality of an AI Agent's output is directly proportional to the number of Tokens you invest.

The author isn't speaking in general theoretical terms; instead, they provide two specific methods you can start using today and clearly define the boundary where throwing more Tokens won't help—the "novelty problem."

For readers currently using Agents to write code or run workflows, the information density and practicality are very high.

Introduction

Alright, you have to admit the title is quite eye-catching—but seriously, it's no joke.

In 2023, when we were using LLMs to run production code, people around us were stunned because the common belief at the time was that LLMs could only produce unusable garbage. But we knew something others didn't: the output quality of an Agent is a function of the number of Tokens you invest. It's that simple.

Run a few experiments yourself and you'll see. Have an Agent complete a complex, somewhat niche programming task—for example, implementing a convex optimization algorithm with constraints from scratch. First, run it at the lowest thinking level; then switch to the highest thinking level and have it review its own code to see how many bugs it can find. Try the medium and high levels. You'll visually see: the number of bugs decreases monotonically as the number of Tokens invested increases.

This isn't hard to understand, right?

More Tokens = Fewer errors. You can take this logic a step further; this is essentially the (simplified) core idea behind code review products. In a completely new context, invest a massive number of Tokens (for example, have it parse the code line by line, judging whether each line has a bug)—this can basically catch the vast majority, if not all, bugs. This process can be repeated ten times, a hundred times, each time examining the codebase from a "different angle," and you can eventually unearth all the bugs.

There's another empirical support for the view that "burning more Tokens improves Agent quality": those teams that claim to use Agents to write code from start to finish and push it directly to production are either the foundational model providers themselves or extremely well-funded companies.

So, if you're still struggling to get production-level code from your Agent—to be blunt, the problem lies with you. Or rather, with your wallet.

How to Tell If You're Burning Enough Tokens

I wrote an entire article saying the problem definitely isn't your framework (harness), that "keeping it simple" can still produce excellent results, and I still stand by that view. You read that article, followed the advice, but were still greatly disappointed by the Agent's output. You sent me a DM, saw I read it but didn't reply.

This article is the reply.

Your Agent performs poorly and can't solve the problem, most of the time, simply because you're not burning enough Tokens.

How many Tokens are needed to solve a problem depends entirely on the problem's scale, complexity, and novelty.

"What's 2+2?" doesn't require many Tokens.

"Write me a bot that scans all markets between Polymarket and Kalshi, finds markets that are semantically similar and should settle around the same event, sets no-arbitrage boundaries, and automatically trades with low latency whenever an arbitrage opportunity arises"—this requires burning a huge pile of Tokens.

We found something interesting in practice.

If you invest enough Tokens to handle problems caused by scale and complexity, the Agent *will* solve them, no matter what. In other words, if you want to build something extremely complex, with many components and lines of code, as long as you throw enough Tokens at these problems, they will eventually be completely resolved.

There is one small but important exception.

Your problem cannot be too novel. At this stage, no amount of Tokens can solve the "novelty" problem. Enough Tokens can reduce errors from complexity to zero, but they cannot make an Agent invent something it doesn't know out of thin air.

This conclusion actually came as a relief to us.

We spent enormous effort, burned—a lot, a lot, a whole lot—of Tokens, trying to see if an Agent could reconstruct an institutional investment process with almost no guidance. This was partly to figure out how many years we (as quantitative researchers) have before being completely replaced by AI. It turned out the Agent couldn't get anywhere close to a decent institutional investment process. We believe this is partly because they have never seen such a thing—meaning, institutional investment processes simply don't exist in the training data.

So, if your problem is novel, don't count on solving it by stacking Tokens. You need to guide the exploration process yourself. But once you've defined the implementation plan, you can confidently stack Tokens for execution—no matter how large the codebase or how complex the components, it's not a problem.

Here's a simple heuristic: the Token budget should grow proportionally with the number of lines of code.

What Are the Extra Tokens Actually Doing?

In practice, additional Tokens typically improve the Agent's engineering quality in the following ways:

Allowing it to spend more time reasoning in the same attempt, giving it a chance to discover flawed logic itself. Deeper reasoning = better planning = higher probability of success on the first try.

Allowing it to make multiple independent attempts, exploring different solution paths. Some paths are better than others. Allowing more than one attempt lets it choose the best one.

Similarly, more independent planning attempts allow it to abandon weak directions and keep the most promising ones.

More Tokens allow it to critique its previous work with a fresh context, giving it a chance to improve instead of being stuck in a certain "reasoning inertia."

And, of course, my favorite: more Tokens mean it can use tests and tools for verification. Actually running the code to see if it works is the most reliable way to confirm the answer is correct.

This logic works because engineering failures of Agents are not random. They are almost always due to choosing the wrong path too early, not checking if this path actually works (early on), or not having enough budget to recover and backtrack after discovering a mistake.

That's the story. Tokens are literally the decision quality you buy. Think of it like research work: if you ask a person to answer a difficult question on the spot, the quality of the answer decreases as time pressure increases.

Research, at its core, is what produces the foundational "knowing the answer." Humans spend biological time to produce better answers; Agents spend more compute time to produce better answers.

How to Improve Your Agent

You might still be skeptical, but there are many papers supporting this, and honestly, the very existence of the "reasoning" adjustment knob is all the proof you need.

One paper I particularly like: researchers trained on a small, carefully curated set of reasoning examples, then used a method to force the model to keep thinking when it wanted to stop—specifically by appending "Wait" where it wanted to stop. This single change raised a certain benchmark from 50% to 57%.

I want to be as clear as possible: if you've been complaining that the code written by your Agent is mediocre, the single highest thinking level is likely still not enough for you.

I'll give you two very simple solutions.

Simple Method One: WAIT

The simplest thing you can start doing today: set up an automatic loop—after building, have the Agent review its work N times with a fresh context, fixing any issues found each time.

If you find this simple trick improves your Agent's engineering results, then you at least understand that your problem is just a matter of Token quantity—welcome to the Token burning club.

Simple Method Two: VERIFY

Have the Agent verify its own work early and often. Write tests to prove that the chosen path actually works. This is especially useful for highly complex, deeply nested projects—a function might be called by many other downstream functions. Catching errors upstream can save you a lot of subsequent compute time (Tokens). So, if possible, set up "verification checkpoints" throughout the entire build process.

Finished writing a piece? The main Agent says it's done? Have a second Agent verify it. Unrelated thought streams can cover sources of systematic bias.

That's basically it. I could write a lot more on this topic, but I believe just realizing these two things and implementing them well can solve 95% of your problems. I firmly believe in doing simple things extremely well, then adding complexity as needed.

I mentioned that "novelty" is a problem that can't be solved with Tokens, and I want to emphasize it again because you will eventually hit this pitfall and come crying to me saying stacking Tokens didn't work.

When the problem you want to solve isn't in the training set, *you* are the one who really needs to provide the solution. Therefore, domain expertise remains extremely important.

Pertanyaan Terkait

QWhat is the core argument of the article regarding AI Agent output quality?

AThe core argument is that the quality of an AI Agent's output is directly proportional to the number of tokens you are willing to invest in the process.

QAccording to the article, what is the one type of problem that cannot be solved by simply using more tokens?

AProblems that are 'novel' or not present in the model's training data cannot be solved by any amount of tokens; they require human guidance and domain expertise.

QWhat are the two simple methods suggested in the article to immediately improve an AI Agent's performance?

AThe two simple methods are: 1. WAIT - Set up an automatic loop for the Agent to review its work multiple times with a fresh context and fix any issues found. 2. VERIFY - Have the Agent (or a second one) verify its work early and often by writing tests to prove the chosen path works.

QHow does the article suggest thinking about the relationship between tokens and decision quality?

AThe article suggests thinking of tokens as literally 'buying' decision quality, analogous to how human researchers spend biological time to produce better answers, an AI Agent spends computational time (tokens) to produce better answers.

QWhat heuristic does the article provide for determining a sufficient token budget for a task?

AThe article provides a simple heuristic: the token budget should grow proportionally with the number of lines of code required for the task.

Bacaan Terkait

Perhatian Wajib Pekan Depan|Undang-Undang CLARITY Diperkirakan Akan Masuk ke Pemungutan Suara Senat; SpaceX dan Circle Umumkan Laporan Keuangan (3-9 Agustus)

**Ringkasan Acara Penting Pekan Depan (3-9 Agustus)** Pekan depan diwarnai sejumlah pengumuman keuangan penting dan perkembangan regulasi kripto di AS. **Laporan Keuangan & Acara Perusahaan:** * **SpaceX** akan merilis laporan keuangan Q2 2026 pada 4 Agustus, diikuti gelombang pencairan saham internal pertama (hingga 12%) pada 6 Agustus. * **Circle** (penerbit USDC) dan **Hut 8** (penambang Bitcoin) masing-masing akan mengumumkan laporan kuartalan pada 5 Agustus dan 4 Agustus. * **American Bitcoin (ABTC)**, perusahaan tambang kripto yang dikaitkan dengan keluarga Trump, merilis laporan Q2 pada 3 Agustus. * Perusahaan robotika **宇树科技 (Unitree Robotics)** akan melakukan penawaran saham perdana (IPO) di pasar STAR China, dengan hari penentuan harga awal pada 5 Agustus. **Regulasi Kripto AS:** * **CLARITY Act**, undang-undang kerangka kerja federal untuk aset kripto, berpeluang dilakukan pemungutan suara penuh di Senat AS minggu ini. Para negosiator harus merampungkan aturan tentang konflik kepentingan sebelum masa reses 7 Agustus. RUU ini memerlukan 60 suara untuk disetujui. **Pengumuman Data & Teknologi:** * **Laporan Non-Farm AS** untuk Juli akan dirilis pada 7 Agustus, menjadi fokus pasar. * **Grok AI** versi 4.6 (dengan 1,5 triliun parameter) diperkirakan diluncurkan sekitar 7 Agustus, diikuti versi 4.7 yang lebih kuat beberapa minggu setelahnya. * **XRP Ledger** versi 3.3.0 dengan lima fitur baru, termasuk transaksi batch, dijadwalkan rilis minggu depan. **Penutupan & Perubahan Layanan:** * Beberapa layanan kripto akan berhenti beroperasi: **Zapper** (pelacak portofolio DeFi) dan **Ctrl Wallet** pada 3 Agustus, serta **LayerZero** akan menghentikan relayernya untuk v1 pada tanggal yang sama. Bursa Korea **Upbit** akan menghapus perdagangan pasangan **AQT** dan **AERGO** pada 3 Agustus. **Acara Lainnya:** * **BIP-110**, sebuah proposal peningkatan jaringan Bitcoin, akan memulai fase pengiriman sinyal wajib sekitar 8 Agustus.

marsbit8m yang lalu

Perhatian Wajib Pekan Depan|Undang-Undang CLARITY Diperkirakan Akan Masuk ke Pemungutan Suara Senat; SpaceX dan Circle Umumkan Laporan Keuangan (3-9 Agustus)

marsbit8m yang lalu

Saham Jatuh Lebih Parah daripada Kripto, Ke Mana Uangnya Pergi?

Penulis: Cathy,白话区块链 Pada 28 dan 29 Juli di Seoul, indeks Kospi memicu *circuit breaker* dua hari berturut-turut, suatu peristiwa yang belum pernah terjadi dalam sejarah pasar saham Korea. Saham-saham semikonduktor global, termasuk SK Hynix yang turun sekitar 23% dalam dua hari, mengalami penurunan drastis. Penarikan dana (pullback) Kospi pada Juli mencapai 40% dari titik tertinggi Juni, menjadikannya bulan terburuk yang tercatat. Produk leverage seperti ETF 2x Long SK Hynix bahkan anjlok hingga 83%, menghapus lebih dari 1 triliun HKD dalam nilai pasar. Ironisnya, Bitcoin justru naik hampir 15% dari titik terendah Juli, menunjukkan perilaku yang tidak biasa: **saham yang jatuh seperti aset kripto, sementara Bitcoin relatif stabil.** Penurunan ini bukan kepanikan pasar luas, melainkan "peledakan tertarget" terhadap perdagangan yang paling ramai (*crowded trades*), dipicu oleh laporan keuangan SK Hynix yang meski mencetak rekor laba tetapi di bawah perkiraan, serta IPO besar-besaran ChangXin Memory (CXMT) dari China. Ditambah dengan potensi likuidasi posisi *carry trade* Yen Jepang yang masif, pasar mengalami de-leverage paksa. Lalu, apakah uang yang keluar dari saham mengalir ke Bitcoin? Jawabannya tidak. Bitcoin tampak "tahan jatuh" karena sudah mengalami koreksi lebih dulu—jatuh sekitar 21% selama periode arus keluar ETF berkelanjutan pada Mei-Juni. Uang yang mencari perlindungan justru mengalir ke emas, yang harganya naik lebih dari 20% secara tahunan. Koefisien korelasi Bitcoin dengan emas mencapai -0.88, mengindikasikan bahwa institusi kini memandangnya sebagai aset yang berbeda: **emas untuk perlindungan, Bitcoin untuk potensi pertumbuhan.** Agar aliran dana besar-besaran benar-benar masuk ke Bitcoin, diperlukan tiga kondisi: tekanan likuidasi global mereda, The Fed menurunkan suku bunga tanpa memicu resesi, dan disahkannya RUU CLARITY di AS untuk memberikan kejelasan regulasi. Meski RUU tersebut tertunda di Senat, arahnya sudah jelas. **Harga saham teknologi ditentukan oleh pengeluaran modal AI dan laba perusahaan, sedangkan harga Bitcoin ditentukan oleh likuiditas global.** Ketidakselarasan ini justru menciptakan daya tarik bagi institusi yang ingin mendiversifikasi portofolio mereka. Kesimpulannya, Bitcoin saat ini bukan tempat perlindungan (*safe haven*), melainkan aset yang sudah terkoreksi lebih dulu dan sudah berada di posisi yang siap. **Dana belum datang, tetapi posisinya sudah dipersiapkan.** Ketika badai berlalu dan modal global mencari tempat baru untuk dialokasikan, Bitcoin berada di urutan terdepan dalam antrian.

marsbit8m yang lalu

Saham Jatuh Lebih Parah daripada Kripto, Ke Mana Uangnya Pergi?

marsbit8m yang lalu

Dialog dengan Ray Dalio: Saat Ini Berada dalam Gelembung AI, 1% Portofolio Investasi Adalah Bitcoin

Sumber: The Diary Of A CEO Ray Dalio, pendiri Bridgewater Associates yang meramalkan krisis keuangan 2008, memperingatkan bahwa ledakan AI saat ini menunjukkan tanda-tanda klasik gelembung ekonomi yang dapat pecah dan memicu resesi. Dalam wawancara podcast, dia menjelaskan dinamika "siklus besar" yang didorong oleh ketimpangan kekayaan, defisit pemerintah, dan perubahan geopolitik. Dalio mengidentifikasi pola di mana antusiasme berlebihan terhadap teknologi revolusioner baru, seperti AI, menyebabkan harga aset melambung dan pinjaman berlebihan. Ketika kondisi berubah (seperti kenaikan suku bunga atau kebutuhan tunai), gelembung ini dapat pecah, menyebabkan penurunan harga aset, kerugian luas, dan kontraksi ekonomi. Untuk melindungi kekayaan di masa ketidakpastian, Dalio sangat menekankan pentingnya **diversifikasi portofolio**—termasuk saham, obligasi, emas, dan real estat—daripada mengandalkan uang tunai saja. Dia mengungkapkan bahwa sekitar **1% portofolionya adalah Bitcoin**, yang diakuinya sebagai aset keras, tetapi dia lebih menyukai **emas fisik** karena sejarahnya sebagai penyimpan nilai dan aset bebas liabilitas. Mengenai dampak AI, Dalio percaya bahwa teknologi ini akan menggantikan tidak hanya tenaga fisik tetapi juga kemampuan kognitif manusia, berpotensi memperlebar kesenjangan antara pemilik modal dan pekerja. Masa depan akan menguntungkan mereka yang dapat memadukan kecerdasan manusia (seperti emosi dan intuisi) dengan kemitraan AI. Secara geopolitik, Dalio menggambarkan dunia yang memasuki fase "penurunan" dalam tatanan global, dengan Amerika Serikat menghadapi tantangan internal dan eksternal, termasuk konflik seperti di Iran yang mengungkap kelemahannya. Dia memprediksi dunia mungkin menjadi lebih terregionalisasi di masa depan. Secara keseluruhan, kunci untuk navigasi melalui periode kompleks ini adalah pemahaman akan pola sejarah, adaptasi, dan diversifikasi yang cermat.

marsbit4j yang lalu

Dialog dengan Ray Dalio: Saat Ini Berada dalam Gelembung AI, 1% Portofolio Investasi Adalah Bitcoin

marsbit4j yang lalu

Rekor! Beli Bersih Asing 7,2 Triliun Won dalam Sehari, Wall Street: Tekanan Likuiditas di Pasar Saham Korea Telah Mereda

**Ringkasan: Rekor Pembelian Asing dan Peningkatan Likuiditas di Pasar Saham Korea** Aliran modal asing menunjukkan perubahan signifikan di pasar saham Korea (KOSPI). Pada 31 Juli, investor asing melakukan pembelian bersih rekor sebesar 7,2 triliun Won Korea dalam sehari, menandai pembalikan dari tren penjualan bersih besar-besaran dalam beberapa bulan terakhir. Secara bulanan, penjualan bersih asing menyusut drastis menjadi 9,8 triliun Won di Juli, turun dari 48,4 triliun dan 44,5 triliun Won pada Juni dan Mei. Tekanan penjualan dari lembaga domestik juga mereda. Dana pensiun dan reksa dana domestik justru menjadi pembeli bersih 1,0 triliun Won di Juli, setelah dua bulan sebelumnya menjadi penjual bersih. Faktor pendukung lainnya adalah peraturan baru dari Komisi Jasa Keuangan (FSC) yang memberlakukan syarat lebih ketat bagi investor ritel untuk masuk ke ETF leverage saham tunggal, yang langsung mengurangi volume perdagangan instrumen tersebut hingga sekitar 50%. Kebijakan ini diperkirakan dapat menekan volatilitas pasar. Citigroup mempertahankan target indeks KOSPI di level 10.000 poin, menyoroti memudarnya angin penentu likuiditas. Analis mereka menilai faktor fundamental seperti industri chip memori yang solid, valuasi historis yang rendah, fundamental ekonomi Korea yang kuat, dan dukungan kebijakan berpotensi menjadi pendorong bagi pasar.

marsbit4j yang lalu

Rekor! Beli Bersih Asing 7,2 Triliun Won dalam Sehari, Wall Street: Tekanan Likuiditas di Pasar Saham Korea Telah Mereda

marsbit4j yang lalu

Pembaruan! AI Generasi Berikut OpenAI Pecahkan 10 Masalah Kelas Medali Fields

**OpenAI Model Astra Pecahkan 10 Masalah Matematika Kelas Fields Medal!** OpenAI mengumumkan terobosan besar dari model internal terbarunya, Astra. Model ini dilaporkan telah membuat kemajuan signifikan dalam **10 masalah matematika yang belum terpecahkan**, dengan biaya komputasi hanya sekitar **$2000**. Hasilnya dipublikasikan dalam makalah setebal 249 halaman. Beberapa pencapaian utama meliputi: 1. **Menyelesaikan masalah "non-sofic group"** yang diajukan Mikhail Gromov tahun 1999, dengan membangun contoh kelompok yang tak hingga dan finitely presented yang bukan sofic. Ini dianggap sebagai kemajuan bersejarah. 2. **Memecahkan batas lama dalam masalah pengepakan bola berdimensi tinggi** (sphere packing), meningkatkan batas yang telah bertahan sejak 1978 untuk dimensi tak hingga. 3. **Menyangkal dugaan "Connes Rigidity"** dengan membangun keluarga tak terhitung dari kelompok berbeda yang menghasilkan aljabar von Neumann yang sama persis. Semua bukti telah diverifikasi menggunakan asisten pembuktian formal Lean 4, memastikan ketepatannya. Para ahli matematika menyebut temuan ini sebagai **momen bersejarah**, setara dengan prestasi penghargaan Fields Medal, dan menandai kemampuan AI untuk melakukan penalaran matematika mendalam di berbagai bidang. OpenAI juga membagikan proses penalaran model, menunjukkan langkah maju yang besar menuju AGI (Artificial General Intelligence).

marsbit5j yang lalu

Pembaruan! AI Generasi Berikut OpenAI Pecahkan 10 Masalah Kelas Medali Fields

marsbit5j yang lalu

Trading

Spot
活动图片