Quickstart

Get RADAR evaluating in under 5 minutes. A 30-day trial license is auto-generated on first run. No license key required for evaluation.

Pull and run

Pull the RADAR Docker image and start evaluating immediately. The free self-hosted version includes full evidence collection.

docker run -d --name radar -p 8080:8080 akioudai/radar:latest

# Verify it is running
curl http://localhost:8080/health

Connect evidence

Point RADAR at your LLM gateway or agent telemetry. Supports gateway log ingestion, webhook receivers, REST API push, OpenTelemetry, and log file parsing.

# Point RADAR at your LLM gateway
docker exec radar radar sources add --type gateway \
  --name my-agents \
  --endpoint http://your-gateway:4000

# Verify connection
docker exec radar radar status

View evidence

Once RADAR detects agent activity, open the dashboard or use the CLI.

# Open the dashboard
open http://localhost:8080

# Inspect traces and findings via CLI
docker exec radar radar traces list --limit 5
docker exec radar radar findings list --severity high

Export a pack

Generate a regulator-ready evidence pack. Includes traces, findings, control mappings, and retention attestations.

docker exec radar radar evidence build --pack-id eu_ai_act_article_14 \
  --format html --output /tmp/evidence-pack.html

Was this page helpful?