128 ways to spend fewer tokens
The 22 Beginner tips are free to read. The 106 advanced tactics unlock with Pro — plus a fresh tip in your inbox every morning.
Stop Paying Frontier Prices for Boilerplate Work
Most of your token spend is on tasks a small model handles perfectly. Match the model to the job instead of defaulting to your most expensive option for everything.
Buy More Reasoning on the Cheap Model Before You Upgrade the Tier
When a cheap model stumbles on a hard task, the reflex is to jump to the frontier tier. Often the cheaper move is to keep the small model and turn its reasoning effort up — its per-token rate is so low it can brute-reason through the problem and still cost far less.
Cascade: Try the Cheap Model First, Escalate Only When It Fails
Send every request to a small model first, programmatically check the answer, and only escalate to a frontier model when the cheap one falls short.
Set service_tier flex for Batch Prices on the Sync Endpoint
Add a single parameter to your OpenAI Responses or Chat Completions calls to pay Batch-API rates without restructuring anything into async batch jobs. You keep a normal synchronous request/response flow and give up only guaranteed speed.
Don't Burn Reasoning Tokens on Tasks That Don't Reason
Model selection isn't just which model — it's which reasoning mode. Turn thinking down or off for straightforward work and reserve deep reasoning for genuinely hard problems.
The Harness Effect: Fix Your Orchestration Before You Reach for a Cheaper Model
The reflex when an agent bill climbs is to downgrade the model - a flat, one-time per-token discount that costs quality. A controlled study (The Harness Effect, arXiv 2607.06906) held the model fixed and changed only the orchestration layer, cutting tokens/task 38% and cost 41%. Audit and fix the harness - cache-shape, compaction, offload, suspend-don't-poll, failure governance - before you reach for a cheaper model.
Pin effort on the Managed Agents agent resource, not the session
In the Managed Agents API, an `effort` level set inside a per-session model override is silently ignored, and changing an agent's model `id` silently resets a pinned effort to the new model's default. Set effort on the agent resource, and re-assert it on every model swap.
Use a Big Model as the Planner, Small Models as the Workers
In agentic and multi-step pipelines, reserve the frontier model for orchestration and hard reasoning, and delegate bulk subtasks (search, read, extract) to a cheaper model.
Like what you see?
Get a fresh one in your inbox — weekly free, daily on Pro.