Enterprise teams deploy agent fleets for procurement, customer support, data collection, and market analysis. Each agent operates autonomously within its assigned budget and policy. The Oris command center provides real-time visibility across the entire fleet. One dashboard. Every agent. Every transaction.
A procurement team deploys 200 agents to negotiate cloud compute contracts across 15 vendors. Each agent needs its own wallet, its own spending limits, and its own behavioral parameters. Without centralized control, a single misconfigured agent can drain a budget in seconds. Manual oversight does not scale beyond a handful of agents.
Define organization-level spending limits. Set department-level budgets within those limits. Assign per-agent caps within department budgets. The hierarchy ensures that no individual agent can exceed its allocation, and no department can exceed its budget.
The Oris command center displays every active agent, its current spending, its KYA level, and its policy status. Anomalies surface immediately. Agents that deviate from their behavioral baseline trigger automatic alerts.
If an agent exceeds its policy limits or exhibits behavioral drift, Oris suspends the agent automatically. The suspension happens within the policy evaluation cycle. No human intervention is required for the initial response.
Budgets cascade from the organization level down through departments to individual agents. Each level enforces its own limits. A department cannot exceed the organization allocation, and an agent cannot exceed the department allocation.
The Oris SDK provides a straightforward interface for fleet creation and agent deployment. Define the fleet budget, add agents with individual policies, and the SDK handles wallet creation, policy binding, and real-time monitoring setup.
# Create a fleet with hierarchical budgets
fleet = oris.fleets.create(
name="procurement-fleet",
monthly_budget=50000.00
)
# Add agents to the fleet
for vendor in vendor_list:
agent = oris.agents.create(
fleet_id=fleet.id,
name=f"buyer-{vendor.name}",
policy={
"max_daily": 500.00,
"max_per_tx": 100.00,
"allowed_categories": ["compute"]
}
)
Hundreds of agents purchasing SaaS licenses, cloud compute, and infrastructure services across multiple vendors. Centralized budgets prevent overspending. The activity log provides a complete audit trail for finance.
Agent fleets executing market research, data acquisition, and counterparty analysis with strict per-agent spending controls. Compliance teams receive real-time visibility into every transaction.
Procurement agents negotiating with suppliers, comparing prices, and executing purchase orders within approved budgets. Each agent operates within its assigned vendor category and spending limits.
Create a free account, configure your policies, and deploy agents in minutes. The Oris SDK handles wallet creation, spending enforcement, and activity logging.