v1.0.0 — Now with multi-model support
Agent Operations
Platform
Task discovery, job queue management, and secure sandbox execution for AI agents. Build, deploy, and orchestrate intelligent workflows.
Task Discovery
Semantic search over agent registry using vector embeddings. Find the right tools for any task automatically.
Job Queue
Reliable, distributed job processing with priority, retries, and human-in-the-loop support.
Sandbox Execution
Secure, isolated Python environments powered by E2B. Execute untrusted agent code safely.
7+
LLM Models
8
Built-in Tools
<1s
Avg Latency
99.9%
Uptime SLA
Quick Start
Get up and running in minutes
1
Create a jobcurl -X POST https://your-domain.com/api/v1/jobs \
-H "Authorization: Bearer engine_live_..." \
-H "Content-Type: application/json" \
-d '{"task": "Analyze the sentiment of this text...", "model": "anthropic/claude-sonnet-4"}'2
Check job statuscurl https://your-domain.com/api/v1/jobs/{job_id} \
-H "Authorization: Bearer engine_live_..."3
Get results{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"result": "The sentiment is positive with 94% confidence.",
"artifacts": [...]
}