Catalog
affaan-m/cost-aware-llm-pipeline

affaan-m

cost-aware-llm-pipeline

Cost optimization patterns for LLM API usage — model routing by task complexity, budget tracking, retry logic, and prompt caching. Use when LLM spend needs to come down, or when routing tasks across model tiers and budgets.

NewUpdated Sep 9, 2026

Cost-Aware LLM Pipeline

Patterns for controlling LLM API costs while maintaining quality. Combines model routing, budget tracking, retry logic, and prompt caching into a composable pipeline.

When to Activate

  • Building applications that call LLM APIs (Claude, GPT, etc.)
  • Processing batches of items with varying complexity
  • Need to stay within a budget for API spend
  • Optimizing cost without sacrificing quality on complex tasks

Core Concepts

1. Model Routing by Task Complexity

Automatically select cheaper models for simple tasks, reserving expensive models for complex ones.

MODEL_SONNET = "claude-sonnet-5"
MODEL_HAIKU = "claude-haiku-4-5-20251001"

_SONNET_TEXT_THRESHOLD = 10_000  # chars
_SONNET_ITEM_THRESHOLD = 30     # items

def select_model(
    text_length: int,
    item_count: int,
    force_model: str | None = None,
) -> str:
    """Select model based on task complexity."""
    if force_model is not None:
        return force_model
    if text_length >= _SONNET_TEXT_THRESHOLD or item_count >= _SONNET_ITEM_THRESHOLD:
        return MODEL_SONNET  # Complex task
    return MODEL_HAIKU  # Simple task (3-4x cheaper)

2. Immutable Cost Tracking

Track cumulative spend with frozen dataclasses. Each API call returns a new tracker — never mutates state.

from dataclasses import dataclass

@dataclass(frozen=True, slots=True)
class CostRecord:
    model: str
    input_tokens: int
    output_tokens: int
    cost_usd: float

@dataclass(frozen=True, slots=True)
class CostTracker:
    budget_limit: float = 1.00
    records: tuple[CostRecord, ...] = ()

    def add(self, record: CostRecord) -> "CostTracker":
        """Return new tracker with added record (never mutates self)."""
        return CostTracker(
            budget_limit=self.budget_limit,
            records=(*self.records, record),
        )

    @property
    def total_cost(self) -> float:
        return sum(r.cost_usd for r in self.records)

    @property
    def over_budget(self) -> bool:
        return self.total_cost > self.budget_limit

3. Narrow Retry Logic

Retry only on transient errors. Fail fast on authentication or bad request errors.

from anthropic import (
    APIConnectionError,
    InternalServerError,
    RateLimitError,
)

_RETRYABLE_ERRORS = (APIConnectionError, RateLimitError, InternalServerError)
_MAX_RETRIES = 3

def call_with_retry(func, *, max_retries: int = _MAX_RETRIES):
    """Retry only on transient errors, fail fast on others."""
    for attempt in range(max_retries):
        try:
            return func()
        except _RETRYABLE_ERRORS:
            if attempt == max_retries - 1:
                raise
            time.sleep(2 ** attempt)  # Exponential backoff
    # AuthenticationError, BadRequestError etc. → raise immediately

4. Prompt Caching

Cache long system prompts to avoid resending them on every request.

messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "text",
                "text": system_prompt,
                "cache_control": {"type": "ephemeral"},  # Cache this
            },
            {
                "type": "text",
                "text": user_input,  # Variable part
            },
        ],
    }
]

Composition

Combine all four techniques in a single pipeline function:

def process(text: str, config: Config, tracker: CostTracker) -> tuple[Result, CostTracker]:
    # 1. Route model
    model = select_model(len(text), estimated_items, config.force_model)

    # 2. Check budget
    if tracker.over_budget:
        raise BudgetExceededError(tracker.total_cost, tracker.budget_limit)

    # 3. Call with retry + caching
    response = call_with_retry(lambda: client.messages.create(
        model=model,
        messages=build_cached_messages(system_prompt, text),
    ))

    # 4. Track cost (immutable)
    record = CostRecord(model=model, input_tokens=..., output_tokens=..., cost_usd=...)
    tracker = tracker.add(record)

    return parse_result(response), tracker

Pricing Reference (2026)

Model Input ($/1M tokens) Output ($/1M tokens) Relative Cost
Haiku 3.5 (legacy) $0.80 $4.00 0.8x
Haiku 4.5 $1.00 $5.00 1x
Sonnet 5 $2.00 $10.00 2x
Sonnet 4.6 $3.00 $15.00 3x
Opus 4.8 $5.00 $25.00 5x
Fable 5 / Mythos 5 $10.00 $50.00 10x
Opus 4.0 / 4.1 (legacy) $15.00 $75.00 15x

Best Practices

  • Start with the cheapest model and only route to expensive models when complexity thresholds are met
  • Set explicit budget limits before processing batches — fail early rather than overspend
  • Log model selection decisions so you can tune thresholds based on real data
  • Use prompt caching for system prompts over 1024 tokens — saves both cost and latency
  • Never retry on authentication or validation errors — only transient failures (network, rate limit, server error)

Anti-Patterns to Avoid

  • Using the most expensive model for all requests regardless of complexity
  • Retrying on all errors (wastes budget on permanent failures)
  • Mutating cost tracking state (makes debugging and auditing difficult)
  • Hardcoding model names throughout the codebase (use constants or config)
  • Ignoring prompt caching for repetitive system prompts

When to Use

  • Any application calling Claude, OpenAI, or similar LLM APIs
  • Batch processing pipelines where cost adds up quickly
  • Multi-model architectures that need intelligent routing
  • Production systems that need budget guardrails
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

87/100

Grade

A

Excellent

Grades are signals, not a certification. Always review a skill yourself before use.

Safety

92

Quality

85

Clarity

88

Completeness

82

Summary

A Python skill teaching cost optimization patterns for LLM API usage, covering model routing by task complexity, immutable budget tracking, selective retry logic for transient errors, and prompt caching. The skill combines these four techniques into a composable pipeline with practical code examples and best practices.

Detected Capabilities

code pattern documentationPython syntax examplescost calculationAPI integration guidanceerror handling patternsconfiguration management

Trigger Keywords

Phrases that agents use to match this skill to user intent.

optimize llm costsmodel routing by complexitybudget-aware api callsclaude haiku sonnetprompt cachingcost tracking pipelineintelligent model selection

Use Cases

  • Route requests between Claude Haiku (cheap) and Sonnet (expensive) based on task complexity
  • Track cumulative LLM API spend and enforce hard budget limits before overspending
  • Implement intelligent retry logic that handles transient failures while failing fast on auth/validation errors
  • Cache long system prompts to reduce token usage and latency on repeated API calls
  • Build cost-aware batch processing pipelines that optimize per-item model selection

Quality Notes

  • Strong code examples with clear variable names and docstrings
  • Immutable dataclass design teaches functional programming best practices
  • Pricing table is concrete and specific (dated 2026, includes legacy models)
  • Best practices section differentiates this from generic LLM tutorials
  • Anti-patterns section explicitly warns against common cost pitfalls
  • Retry logic properly scopes errors to transient failures only
  • All four techniques are composable and shown working together
  • Examples use real Anthropic SDK patterns (cache_control, error types)
  • Clear activation criteria help users recognize when to use this skill
Model: claude-haiku-4-5-20251001Analyzed: Sep 9, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

  1. v2.0

    Contract changed: description

    ✦ AIUpdates default model constant from Sonnet 4.6 to Sonnet 5 and expands pricing reference table to include new model tiers (Fable, Mythos, Opus 4.8) and legacy models.

    triggering2026-09-09

    LATEST
  2. v1.2

    Content updated

    ✦ AISKILL.md content unchanged; safety grade improved from B to A.

    2026-07-14

    View This Version
  3. v1.1

    Content updated

    ✦ AIAdds LICENSE file.

    2026-04-20

    View This Version
  4. v1.0

    Seeded from github.com/affaan-m/everything-claude-code

    2026-03-16

    View This VersionInitial version

Use affaan-m/cost-aware-llm-pipeline in your dev environment

Command Palette

Search for a command to run...