Mem0's token-efficient rewrite stops doing UPDATE and DELETE when it stores a memory, and pushes the hard part — reconciling contradictions — to read time. That's not a free win. It's a bet about where you can afford to spend.
On Agents' Last Exam — the benchmark for long-running professional workflows, where agent products actually die — GPT-5.6's cheapest tiers now clear a bar that Claude Fable 5 couldn't. The premium you pay for a frontier model just stopped being obvious.
Google quietly shipped a media tier cheap enough to call per request: images at $0.034 per thousand and video at ten cents a second. Here's the model IDs, the pricing math, and copy-paste code to wire both into a product.
Mistral's first physical-AI model guides a robot through spaces it has never seen using a single RGB camera and a sentence — no LiDAR, no depth sensors, no map — and it outscores rigs that carry all three. The 'physical AI is a 2027 problem' assumption just expired.
Every MCP tool you bolt on gets serialized into context on every call. Here's the reproducible way to count exactly what that costs — in tokens, latency, and accuracy — before you spend a dollar guessing.
Google's new agent-first Android toolchain lets Claude Code, Codex, and Gemini build, run, and test Android apps from the terminal — for 70% fewer tokens.
The comparison table asks 'which parser is best.' Wrong question. The right one is: how hard are your documents to read? Pick the cheapest tool that survives them — and only pay for a vision model when your PDFs actually earn it.
Most early products end up wiring together an analytics tool, a session-replay tool, a feature-flag service, an A/B testing service, and — lately — something to watch their AI calls. PostHog is all of those in one open-source platform, free until you're big enough to notice.
In a week when three vendors shipped new frontier models, the smartest move isn't picking one — it's staying swappable. OpenRouter puts 300+ models behind one OpenAI-compatible endpoint, so you change a model by editing a string.
It started as 'run Llama on your Mac.' In 2026 it's how a small team runs open-weight models — Kimi, GLM, DeepSeek, Qwen — locally or hosted, behind the same API your code already speaks. Fresh off a $65M round.
A step-by-step walkthrough from an empty folder to a running app you can deploy to one $5 server — no Redis, no Node build pipeline, no PaaS. The boring stack, on purpose, with every command.
A new benchmark maps the ways agents fail to the spans that would catch them. The GenAI conventions instrument the LLM call and the tool call — and go blind on planning, reasoning, guardrails, delegation, and memory.
The agent-memory leaderboard is fought on LoCoMo, a passive-recall test. MemoryArena couples memory to action — and the same near-perfect systems fall 40 points. The gap isn't inflation; it's the wrong exam.
Everyone reports the hit rate. The number that decides whether a semantic cache is safe to ship is the false-positive rate — and the fix for false positives eats the exact win you installed the cache to get.
The token-share charts everyone is quoting measure the wrong thing. On the same marketplace where Chinese open-weight models now move most of the tokens, Anthropic — with roughly an eighth of the volume — still captures nearly half the revenue. That gap is the whole story.
Sharding vectors is nothing like sharding rows. The real decision isn't where the data lives — it's how many shards each query is allowed to skip, and what recall you pay to skip them.
A new multi-turn coding benchmark reconstructs 109 real user sessions and scores agents on a second axis SWE-bench never had: not just whether they finished, but how much you had to steer them there.
Wrapping every model call in retry(3) feels responsible. Under a provider brownout it's the fastest way to turn a slowdown into a blackout. The fix is a budget, not more backoff.
An agent is a chain of steps that each depend on the last, so a 24-hour batch window can't sit on the critical path. You can't batch the loop — but the token-heavy work around it is exactly what batch was built for.
The headline savings from semantic caching are real — and they come from a workload your agent doesn't have. Two different things are both called 'caching,' and only one of them is safe to put around a tool call.
Rerun the same eval and an LLM judge flips 1 in 7 of its verdicts — while its own scores show no real difference between the answers. Reliability and validity are two different axes, and the number most teams report can't see either one.
A pull-request gate has to give a clean yes or no. Agent quality is graded and noisy. Wire those two facts together naively and you get a gate engineers learn to re-run until it's green.
Retrieve 100 tools and the right one is 'in the list' 99% of the time — the same odds a random shortlist gives you. Two 2026 papers show why recall is the wrong number, and why fewer tools win.
Studies this year found prompt-injection patterns in roughly a quarter to a third of scanned agent skills. The scary part isn't the number — it's that the standard fix doesn't apply.
On GAIA, the best base model sits near 45% while orchestrated agent systems clear 92% — matching humans. That 47-point gap isn't noise. It's the benchmark quietly telling you the model was never the thing under test.
The first internet-wide measurement of remote MCP servers found 40.55% wide open. The surprise isn't the unlocked doors — it's that the servers that did add OAuth were flawed 100% of the time.
The neocloud pitch started as 'cheap raw GPUs vs AWS.' In 2026 the scarce input isn't price — it's powered, networked racks — and the category has quietly split into two businesses that barely compete.
Berkeley's benchmark made its name scoring whether a model emits the right JSON. Its v4 rewrite puts 70% of the weight on agentic and multi-turn tasks — a quiet admission that single-shot accuracy is solved and no longer predictive.