Hard enforcement, not advisory warnings
Most token budget tooling is advisory — it tells you after the fact that you've exceeded a threshold. OrchVynt intercepts invocations that would breach the budget before they reach the model. The cost gets enforced, not reported.
Budget scopes you can configure
What happens on budget breach
Reject
The invocation is rejected before reaching the model. OrchVynt returns a budget-exceeded error to the caller. Use for hard financial caps — invocations don't happen when the budget is gone.
Downgrade
When the primary model would exceed the budget, route to a cheaper model configured as the downgrade target. The invocation completes, but at reduced cost and quality.
Alert only
Emit a telemetry event and optionally notify via webhook when a threshold is reached — without blocking the invocation. Useful for cost visibility without hard enforcement.