Batch API Orchestrator
Category: Engineering
Domain: AI Engineering
Overview
Decide when to run LLM work through an asynchronous batch API versus realtime/streaming, then design the job so it is cheap, idempotent, and resilient to partial failure. Batch APIs typically cost roughly half of realtime in exchange for higher latency (results arrive over minutes to hours, not milliseconds), which makes them ideal for evals, backfills, embeddings, and bulk classification/extraction — and wrong for anything a human is waiting on. This skill is model- and vendor-agnostic: it reasons about the batch pattern, not any one provider's API.
Clarify First
Before recommending or designing a batch job, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions.
Quick Start
cd engineering/batch-api-orchestrator
# 1. Should this be batch or realtime, and what does it cost?
python scripts/batch_cost_estimator.py \
--requests 50000 --avg-input-tokens 800 --avg-output-tokens 200 \
--realtime-input-price 3.0 --realtime-output-price 15.0 \
--batch-discount 0.5 --latency-tolerance hours
# 2. Plan the chunking / idempotency / retry strategy for the job
python scripts/batch_job_planner.py \
--total-items 50000 --max-batch-size 10000 --retry-policy exponential --json
Tools Overview
| Tool |
Purpose |
Key Flags |
scripts/batch_cost_estimator.py |
Compare realtime vs batch cost, show savings, and recommend batch or realtime given latency tolerance |
--requests, --avg-input-tokens, --avg-output-tokens, --realtime-input-price, --realtime-output-price, --batch-discount, --latency-tolerance, --json |
scripts/batch_job_planner.py |
Produce a chunking + idempotency + partial-failure plan for a bulk job |
--total-items, --max-batch-size, --retry-policy, --max-retries, --json |
Both scripts: Python 3 standard library only, argparse CLI, --json and human-readable output. Run --help for full usage.
Workflows
1. Decide batch vs realtime, then size the cost
- Gather volume and token shape (
--requests, --avg-input-tokens, --avg-output-tokens).
- Plug in your vendor prices and batch discount — never assume them.
- Run
batch_cost_estimator.py with the real --latency-tolerance (realtime, minutes, or hours).
- Read the verdict: if work is interactive, the tool recommends realtime regardless of savings; otherwise it quantifies the batch savings.
- Sanity-check against the decision tree in
references/batch-patterns-and-decision-tree.md.
2. Design a resilient bulk job
- Run
batch_job_planner.py with --total-items, --max-batch-size, and a --retry-policy.
- Adopt the generated idempotency-key scheme so re-submitting a chunk never double-charges or double-writes.
- Wire result reconciliation: match every output back to its request id, and collect the unmatched into a dead-letter set.
- Apply the partial-failure handling (retry only failed items, never the whole batch) from the reference.
- Choose polling vs callback for completion, per the reference guidance.
Reference Documentation
- references/batch-patterns-and-decision-tree.md — when-to-batch decision tree; job design (idempotency keys, partial failures, reconciliation, polling vs callback); fitting use cases (evals, backfills, embeddings, bulk classification/extraction); and anti-patterns such as batching interactive requests.
- references/cost-and-throughput-economics.md — the cost/throughput tradeoff in depth: the ~half-cost rule of thumb, throughput vs latency, queueing, chunk sizing, and how to model the break-even between a faster realtime path and a cheaper batch path.
Common Patterns
- Batch the patient, stream the impatient — if no human is blocked on the result, default to batch for the cost win; reserve realtime/streaming for interactive UX.
- Idempotency key per item — derive a stable key (e.g. hash of input + job version) so retries and re-submissions are safe and never double-billed.
- Retry the item, not the batch — on partial failure, re-enqueue only the failed request ids; resubmitting the whole chunk wastes money and re-runs successes.
- Reconcile by request id — never rely on output ordering; join results back to inputs by id and route the unmatched to a dead-letter queue for inspection.
- Right-size chunks — split by the vendor's max-batch limit and by your own blast-radius tolerance, not into one giant job whose failure is all-or-nothing.
- Embeddings and evals are the sweet spot — large, latency-insensitive, embarrassingly parallel workloads capture the full batch discount with the least risk.
1---2name: batch-api-orchestrator3description: This skill should be used when the user asks to "batch LLM requests", "should I use the batch API", "estimate batch vs realtime cost", "design a bulk LLM job", or "process thousands of prompts cheaply".4license: MIT + Commons Clause5---6
7# Batch API Orchestrator
8
9> **Category:** Engineering
10> **Domain:** AI Engineering
11
12## Overview
13
14Decide when to run LLM work through an asynchronous batch API versus realtime/streaming, then design the job so it is cheap, idempotent, and resilient to partial failure. Batch APIs typically cost roughly half of realtime in exchange for higher latency (results arrive over minutes to hours, not milliseconds), which makes them ideal for evals, backfills, embeddings, and bulk classification/extraction — and wrong for anything a human is waiting on. This skill is model- and vendor-agnostic: it reasons about the batch *pattern*, not any one provider's API.
15
16## Clarify First
17
18Before recommending or designing a batch job, confirm these inputs. If any is unknown or vague, ASK — do not assume:
19
20- [ ] **Latency tolerance** — is a human waiting (interactive), or can results land in minutes/hours? (sets `--latency-tolerance` and the batch-vs-realtime verdict)
21- [ ] **Volume & token shape** — how many requests, and the average input/output tokens each? (sets `--requests`, `--avg-input-tokens`, `--avg-output-tokens` for the cost estimate)
22- [ ] **Pricing & discount** — your realtime per-token prices and the batch discount your vendor offers (sets `--realtime-input-price`, `--realtime-output-price`, `--batch-discount`; defaults are neutral placeholders, not real prices)
23
24Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions.
25
26## Quick Start
27
28```bash
29cd engineering/batch-api-orchestrator
30
31# 1. Should this be batch or realtime, and what does it cost?
32python scripts/batch_cost_estimator.py \
33 --requests 50000 --avg-input-tokens 800 --avg-output-tokens 200 \
34 --realtime-input-price 3.0 --realtime-output-price 15.0 \
35 --batch-discount 0.5 --latency-tolerance hours
36
37# 2. Plan the chunking / idempotency / retry strategy for the job
38python scripts/batch_job_planner.py \
39 --total-items 50000 --max-batch-size 10000 --retry-policy exponential --json
40```
41
42## Tools Overview
43
44| Tool | Purpose | Key Flags |
45|------|---------|-----------|
46| `scripts/batch_cost_estimator.py` | Compare realtime vs batch cost, show savings, and recommend batch or realtime given latency tolerance | `--requests`, `--avg-input-tokens`, `--avg-output-tokens`, `--realtime-input-price`, `--realtime-output-price`, `--batch-discount`, `--latency-tolerance`, `--json` |
47| `scripts/batch_job_planner.py` | Produce a chunking + idempotency + partial-failure plan for a bulk job | `--total-items`, `--max-batch-size`, `--retry-policy`, `--max-retries`, `--json` |
48
49Both scripts: Python 3 standard library only, argparse CLI, `--json` and human-readable output. Run `--help` for full usage.
50
51## Workflows
52
53### 1. Decide batch vs realtime, then size the cost
54
551. Gather volume and token shape (`--requests`, `--avg-input-tokens`, `--avg-output-tokens`).
562. Plug in *your* vendor prices and batch discount — never assume them.
573. Run `batch_cost_estimator.py` with the real `--latency-tolerance` (`realtime`, `minutes`, or `hours`).
584. Read the verdict: if work is interactive, the tool recommends realtime regardless of savings; otherwise it quantifies the batch savings.
595. Sanity-check against the decision tree in `references/batch-patterns-and-decision-tree.md`.
60
61### 2. Design a resilient bulk job
62
631. Run `batch_job_planner.py` with `--total-items`, `--max-batch-size`, and a `--retry-policy`.
642. Adopt the generated idempotency-key scheme so re-submitting a chunk never double-charges or double-writes.
653. Wire result reconciliation: match every output back to its request id, and collect the unmatched into a dead-letter set.
664. Apply the partial-failure handling (retry only failed items, never the whole batch) from the reference.
675. Choose polling vs callback for completion, per the reference guidance.
68
69## Reference Documentation
70
71- **[references/batch-patterns-and-decision-tree.md](references/batch-patterns-and-decision-tree.md)** — when-to-batch decision tree; job design (idempotency keys, partial failures, reconciliation, polling vs callback); fitting use cases (evals, backfills, embeddings, bulk classification/extraction); and anti-patterns such as batching interactive requests.
72- **[references/cost-and-throughput-economics.md](references/cost-and-throughput-economics.md)** — the cost/throughput tradeoff in depth: the ~half-cost rule of thumb, throughput vs latency, queueing, chunk sizing, and how to model the break-even between a faster realtime path and a cheaper batch path.
73
74## Common Patterns
75
76- **Batch the patient, stream the impatient** — if no human is blocked on the result, default to batch for the cost win; reserve realtime/streaming for interactive UX.
77- **Idempotency key per item** — derive a stable key (e.g. hash of input + job version) so retries and re-submissions are safe and never double-billed.
78- **Retry the item, not the batch** — on partial failure, re-enqueue only the failed request ids; resubmitting the whole chunk wastes money and re-runs successes.
79- **Reconcile by request id** — never rely on output ordering; join results back to inputs by id and route the unmatched to a dead-letter queue for inspection.
80- **Right-size chunks** — split by the vendor's max-batch limit and by your own blast-radius tolerance, not into one giant job whose failure is all-or-nothing.
81- **Embeddings and evals are the sweet spot** — large, latency-insensitive, embarrassingly parallel workloads capture the full batch discount with the least risk.