Skip to main content

Agent Pricing

Orion agent pricing has two components: model usage billed by input and output tokens, and tools billed at fixed dollar prices. Every response includes the final dollar cost directly:

Model quality tiers

Choose the model quality tier based on your accuracy/speed tradeoff. This is independent of the service tier (which controls delivery/cost). These quality tiers apply to both Orion-1 and Orion-2 model families.

How tools are billed

Agent tools fall into two billing categories:
  1. Fixed-price tools: GPU/API tools with a fixed dollar price per unit (per image, per page, per second, or per call). These appear in the pricing table below.
  2. Token-billed tools: LLM-backed tools (captioning, detection, document parsing, video analysis) billed by input/output tokens recorded on the per-span cost ledger. Their cost depends on the selected model tier and the number of tokens consumed.
Fixed-price tools have predictable costs. Token-billed tools vary with input complexity and the selected model tier.

Fixed-price tools

These tools have a fixed dollar price per unit:

Image

Priced per image.
CapabilityDescriptionFastPro
SegmentObject segmentation (GPU-backed)$0.01$0.02
Generate & EditGenerate or edit images from prompts$0.04$0.24

Document

Priced per page.
CapabilityDescriptionFastPro
OCR & LayoutExtract text and detect page structure$0.01$0.04
Extract grounding / confidenceOrion-2 document.extract surcharge when grounding or confidence is enabled$0.01$0.01

Video

Priced per second (generated video).
CapabilityDescriptionFastPro
Generate & EditGenerate video from text/image prompts$0.15/sec$0.40/sec
Standard video generation produces ~6 seconds. At Pro tier: $0.40/sec × 6s = $2.40.

Compute & Execution

LLM orchestration

Every agent run includes LLM token costs for reasoning, tool dispatch, and response synthesis. Orchestration tokens are charged at the agent model’s rate: A typical single-tool run adds approximately $0.01–$0.03 (Fast/Auto) or $0.03–$0.08 (Pro) in orchestration costs. Multi-step runs will be higher.

Media input pricing

Each image or document passed as input to the agent has a fixed per-element price:

Token-billed tools

These LLM-backed tools bill by actual token usage rather than a fixed price. Their cost is determined by the selected tier’s input/output token rates and the usage recorded on the per-span cost ledger. Token costs depend on the quality tier you select. See the token rates table below.

Token rates (USD per 1M tokens)

Token-billed tools bill at the same per-tier token rates as LLM orchestration. You pay per quality tier, not per model:
TierInputOutputCache Discount
Fast / Auto$0.30$2.5010%
Pro$1.00$10.0010%
Cache discount means cached/repeated input tokens cost 10% less. Costs scale with the number of tokens a tool consumes, so simple inputs are cheaper than complex ones.

vlm-1 model tiers

The vlm-1 model family is available on /v1/image/generate and /v1/document/generate routes with three quality tiers: vlm-1 tier token rates (for domain API billing): Set the model via request.model:

Service tiers

The service tier controls delivery (routing, latency, queue priority) and scales the total run cost by a fixed multiplier. It is independent of the model quality tier (Fast/Auto/Pro).
TierMultiplierCost EffectBest For
standard (default)1.0×Base USD priceGeneral agent workloads.
flex0.5×50% of standardBackground agent runs, batch processing.
priority1.8×180% of standardUser-facing interactions needing lowest latency.
The multiplier applies to the total dollar cost (model tokens + all tool calls). For example, a $1.00 standard run costs $0.50 at flex and $1.80 at priority.

How a run cost is calculated

The standard dollar cost is the sum of model-token usage, media inputs, and fixed-price tools:
Where:
  • model_cost includes Orion reasoning turns and token-billed tool usage at the selected model tier’s rates
  • media_cost is the fixed per-element price for input images and documents
  • fixed_tool_cost is the sum of fixed-price tools such as segmentation, generation, OCR, and sandbox execution
  • mode_multiplier is determined by the service tier: 1.0× standard, 0.5× flex, or 1.8× priority

Orion 2 per-span cost ledger

Orion 2 runs produce a per-span ledger that itemizes every billable action: The service-tier multiplier is applied once at the run level:
This gives full transparency into what drove the cost of each run.

Examples

LLM orchestration varies with prompt complexity. The cost_dollars field in the response shows the exact amount.
For generation-heavy runs, tool costs dominate. LLM orchestration is a small fraction of the total.
For Pro tier, OCR is $0.04/page ($2.00 for 50 pages) plus higher LLM orchestration costs (~$0.05–$0.10).
This example shows the per-span ledger for a code-mode run at flex (0.5×):
Video captioning and transcription are token-billed. The cost depends on video length and the quality tier:Math: Fast = 5K × $0.30/1M + 2K × $2.50/1M ≈ $0.007. Pro = 5K × $1.00/1M + 2K × $10.00/1M ≈ $0.025.Plus any fixed-price tool costs (such as generation) if applicable.

FAQ

Fixed-price tools (segmentation, image generation, video generation, OCR, sandbox execution) have predictable dollar prices per unit. Token-billed tools (captioning, detection, document parsing, video analysis) bill by the selected model tier’s input and output token rates.
Fast uses lighter, faster models and is best for prototyping and high-volume workloads. Auto (default) starts with Fast tools and upgrades to Pro for complex tasks. Pro always uses the most powerful models and is best for production quality.
It’s the sum of model token costs (orchestration + token-billed tools), media input prices, and fixed-price tool charges. The response includes cost_dollars (effective amount after the service-tier multiplier) and standard_cost_dollars (baseline).
Every billable action during a run is recorded as a span: each LLM turn, each sandbox execution, and each tool call. The total is the sum of spans, with the service-tier multiplier applied once at the run level. This gives you full visibility into cost drivers.
vlm-1 is available on image and document generation routes with three tiers: vlm-1:fast (lowest cost), vlm-1:auto (balanced, default), and vlm-1:pro (highest quality). Set via the model parameter.
Yes. Image I/O, rotation, cropping, video trimming, document navigation, UI detection, and similar utilities are free.

Get Started

Agent Documentation

Learn about Orion agent capabilities and how to build with them.