Loading...
Loading...
Docs / Billing
OmegaEngine bills based on Decisions. This page is the canonical spec for how each endpoint consumes Decisions so you can design your agents and workloads with full clarity.
For plan pricing, see the Pricing page · For a human-readable overview, see Billing & Metering.
A Decision is a single evaluation performed by the OmegaEngine API that returns any of the following:
All billing is based on Decisions. We do not bill on tokens, model invocations or opaque “compute units.”
The following table defines exactly how many Decisions each OmegaEngine endpoint consumes per successful request:
| Endpoint | Decisions / request | Notes |
|---|---|---|
| /api/decision | 1 | Base judgment + risk + safety for a scenario. |
| /api/agent/advise | 1 | Agent advisory: reads context, applies policies, returns recommended next action. |
| /api/policy/check | 1 | Standalone policy enforcement check. |
| /api/memory/query | 1 | Query and risk-aware recall from the memory engine. |
| /api/memory/write | 0.5 (rounded up monthly) | Writes are billed at half a Decision; fractional usage is rounded up at the end of the billing period. |
| /api/simulate | 2 | Simulated “before” and “after” judgments count as two Decisions per call. |
| /api/tools/run | 2 | Omega evaluates risk before tool execution and again after the tool result. |
| /api/audit/log | 0 (free) | Audit log ingestion is free; only Decision-producing endpoints are billed. |
Suppose your support copilot, on average, performs the following for each user turn:
/api/agent/advise/api/tools/run/api/memory/writeThat’s 1 + 2 + 0.5 = 3.5 Decisions per turn, rounded at the end of the billing period.
// Pseudocode: estimate Decisions per month
const decisionsPerTurn = 1 // /api/agent/advise
+ 2 // /api/tools/run
+ 0.5 // /api/memory/write
const monthlyTurns = 10_000;
const estimatedDecisions = decisionsPerTurn * monthlyTurns;You are responsible for API usage generated by your keys, agents, scripts and third-party integrations. OmegaEngine surfaces detailed usage breakdowns in the Usage & Billing dashboard so you can audit where every Decision went.
For full legal terms, see the Billing section of our Terms of Service. Billing disputes must be submitted within 7 days of invoice issuance.