conceptMLOps y Operaciones~1 min de lecturaActualizado 2026-06-07#mlops#cost#optimization#llmops
Esta nota todavía no está traducida, así que se muestra la fuente en inglés.

Cost optimization

AI cost is a product architecture problem. The biggest savings usually come from using the right model and context for the task, not from shaving tiny percentages off a single model call.

Cost drivers

  • Input tokens: system prompt, history, retrieved context, tool results.
  • Output tokens: verbosity, reasoning traces, structured output.
  • Model choice: larger models cost more and may be unnecessary.
  • Retrieval and reranking calls.
  • Tool calls and external services.
  • Retries from invalid output or failures.

Cost levers

Lever Tradeoff
Smaller model Lower cost, weaker capability
Model routing Complexity, but better cost-quality fit
Prompt/context trimming Risk of missing useful evidence
Semantic cache Staleness and cache invalidation
Batch processing Higher throughput, possible latency
Fine-tune/distill Upfront cost, cheaper repeated inference

Measure unit economics

Track cost per successful task, not only cost per call. A cheap call that fails and retries may be more expensive than one stronger model call that succeeds.

Pitfall

Blindly reducing context can increase hallucination and support load. Cost cuts must be validated with evals, not only billing charts.

Connects to: context window management · distillation · serving