Skip to content

Commit 2951019

Browse files
committed
docs: fix awkward straw-man heading in why-querymode
"The real problem isn't what agents ask" reads like responding to an argument nobody made. Replaced with direct statement of the actual challenge.
1 parent a728037 commit 2951019

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/content/docs/why-querymode.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ description: Agents query like humans, but at machine pace. Data infrastructure
99

1010
3. **Every request pays a serialization tax.** Each agent builds a SQL string, sends it over the network, waits for JSON back, parses it, then builds the next query. An agent chaining three analyses pays that tax six times — three round-trips, three serialize/deserialize cycles. The queries are simple. The overhead is not.
1111

12-
## The real problem isn't what agents ask — it's how many ask at once
12+
## Concurrency at the origin, serialization per request
1313

14-
Agents don't ask mysterious questions. They ask the same questions humans ask: funnel analysis, retention, attribution, top-N queries. The infrastructure challenge isn't unpredictability — it's concurrency at the origin and serialization overhead per request.
14+
A thousand agents asking the same human question at the same millisecond. The infrastructure challenge is handling that concurrency without collapsing the origin, and eliminating the serialization overhead each request pays.
1515

1616
| | Traditional | QueryMode |
1717
|---|---|---|

0 commit comments

Comments
 (0)