The Production Layer for AI Agents

Deploy agents as stateful services with

|

Deploy In One Line

Add a dari.yml file with your tools, skills, and configuration and deploy in just one command.

Agents are Durable Sessions

Create an agent session and communicate via API. Wait hours, days, or even years between messages without worrying about idle costs or sandbox crashes.

curl -X POST https://api.dari.dev/v1/sessions/sess_123/events \
    -H "Authorization: Bearer $DARI_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "events": [
        {
          "type": "user.message",
          "content": [
            { "type": "text", "text": "Extract key fields from this document." },
            { "type": "file", "file_id": "file_456" }
          ]
        }
      ]
    }'

Maintain Full Control

Deploy sandboxes on the platform of your choice, BYOK key for LLMs, choose your harness.

name: support-agent
  harness: pi
  llm:
    base_url: https://openrouter.ai/api/v1
    model: anthropic/claude-sonnet-4.6
    api_key_secret: OPENROUTER_API_KEY
  sandbox:
    provider: e2b
    provider_api_key_secret

Ready to deploy your agents reliably?