Quickstart
From zero to a scored run in 5 minutes
1. Get a free API key
Sign up and leave “Organization” blank for a free individual-developer workspace — no card required. You land on /app/developer, where “Create project” mints a dar_… key shown once.
2. Install the SDK
npm install @doairight/evals
pip install doairight-evals
3. Observe a run
import { createClient } from "@doairight/evals";
const client = createClient({ apiKey: "dar_..." });
client.observe({ prompt: "...", response: "...", kind: "generative" });from doairight_evals import DoAIRight client = DoAIRight(api_key="dar_...") client.observe(prompt="...", response="...", kind="generative")
Next
Full request/response reference: /docs/api. How scores are computed: /docs/benchmarks.