Inspect Logs Viewer

The Inspect logs viewer hosts Inspect .eval log files and lets you inspect per-sample messages, tool calls, and scores.

Local Setup

Start the service and its local MinIO storage from the repo root:

docker compose up -d --build inspect-viewer minio

You can also start all support services:

docker compose up -d --build
Sourceapps/inspect-viewer
URLhttp://localhost:8080
Passwordlinuxbench
Backed byMinIO, an S3-compatible storage service on ports 9000 and 9001

Evals uploaded to the local stack land in the same MinIO bucket, so they appear here automatically. You can also upload manually through the web UI after logging in.

To manage stored files directly, use the MinIO console at http://localhost:9001 with credentials minio / minio123.

Environment Variables

The CLI uploads through the private viewer's API, so point it at the local stack in your .env:

CONTROL_TOWER_API_BASE_URL=http://localhost:3000

SERVER_URL is only used to download a log that has no s3:// location, and needs LOGS_AUTH_PASSWORD.

See apps/inspect-viewer/README.md for container architecture, direct Docker usage, and CLI upload details.