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:- 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.
- 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
These tools have a fixed dollar price per unit:Image
Priced per image.| Capability | Description | Fast | Pro |
|---|---|---|---|
| Segment | Object segmentation (GPU-backed) | $0.01 | $0.02 |
| Generate & Edit | Generate or edit images from prompts | $0.04 | $0.24 |
Document
Priced per page.| Capability | Description | Fast | Pro |
|---|---|---|---|
| OCR & Layout | Extract text and detect page structure | $0.01 | $0.04 |
| Extract grounding / confidence | Orion-2 document.extract surcharge when grounding or confidence is enabled | $0.01 | $0.01 |
Video
Priced per second (generated video).| Capability | Description | Fast | Pro |
|---|---|---|---|
| Generate & Edit | Generate 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:| Tier | Input | Output | Cache Discount |
|---|---|---|---|
| Fast / Auto | $0.30 | $2.50 | 10% |
| Pro | $1.00 | $10.00 | 10% |
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
Thevlm-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).| Tier | Multiplier | Cost Effect | Best For |
|---|---|---|---|
standard (default) | 1.0× | Base USD price | General agent workloads. |
flex | 0.5× | 50% of standard | Background agent runs, batch processing. |
priority | 1.8× | 180% of standard | User-facing interactions needing lowest latency. |
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:- 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:
Examples
1. Image segmentation + generation
1. Image segmentation + generation
LLM orchestration varies with prompt complexity. The
cost_dollars field in the response shows the exact amount.2. Storyboard: 5 images + 5 video clips (6s each)
2. Storyboard: 5 images + 5 video clips (6s each)
For generation-heavy runs, tool costs dominate. LLM orchestration is a small fraction of the total.
3. 50-page document: OCR + LLM parsing
3. 50-page document: OCR + LLM parsing
For Pro tier, OCR is $0.04/page ($2.00 for 50 pages) plus higher LLM orchestration costs (~$0.05–$0.10).
4. Orion 2 code-mode run (flex tier)
4. Orion 2 code-mode run (flex tier)
This example shows the per-span ledger for a code-mode run at
flex (0.5×):5. Video analysis: token-billed
5. Video analysis: token-billed
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
What's the difference between fixed-price and token-billed tools?
What's the difference between fixed-price and token-billed tools?
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.
What's the difference between Fast, Auto, and Pro?
What's the difference between Fast, Auto, and Pro?
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.
How is the total run cost determined?
How is the total run cost determined?
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).What is the per-span cost ledger?
What is the per-span cost ledger?
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.
What about vlm-1 model tiers?
What about vlm-1 model tiers?
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.Are utility tools free?
Are utility tools free?
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.