RedCrown.aiRedCrown.ai Docs Open the app

Quickstart

Prove one task end to end: run a set of models on your data, rank the cheapest one that clears your quality bar, and share a proof. Pick a surface above, or compare all three.

1. Describe the task and give a few examples

A task is a plain-language instruction plus a few example inputs (and, if you have them, the correct outputs to score against).

No labeled data? Set reference_source: "incumbent" to score every challenger against your current model's own output. You prove which config is cheaper at equal-or-better quality without labeling a thing: the incumbent's output is the reference.

UI

Open app.redcrown.ai, land on Prove, paste your task and a few example rows, then choose "Use my data".

CLI
redcrown build-dataset --from-csv examples.csv --task summarize \
  --input-col text --reference-col summary --out task.json
MCP
prove_task({
  "task": "Summarize each support ticket in one sentence.",
  "examples": [{"input": "...", "output": "..."}]
})

2. Run every candidate and rank them

RedCrown fans the task across the candidate models, scores each against your references, and ranks by the cheapest that clears the bar.

UI

The Prove screen runs the candidates and shows the ranked report with cost, quality, and receipts.

CLI
redcrown eval task.json --report-json out.json
MCP

prove_task runs the eval and returns the ranked winner and savings in one call. For a demo with no data, use try_sample.

3. Share a proof

Turn the ranked run into a no-login proof page anyone can open.

UI

Click Share proof on the report to mint a link.

CLI
redcrown push out.json --proof-link
MCP

prove_task returns a proof_url directly.

Last verified . New here? Read Concepts next.