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
| Source | apps/inspect-viewer |
| URL | http://localhost:8080 |
| Password | linuxbench |
| Backed by | MinIO, an S3-compatible storage service on ports 9000 and 9001 |
Evals upload .eval files here automatically. You can also upload manually through the web UI after logging in.
MinIO console is at http://localhost:9001 with credentials minio / minio123 if you need to manage stored files directly.
Environment Variables
The CLI upload/download path reads SERVER_URL from your .env; point it at the local viewer:
SERVER_URL=http://localhost:8080
See apps/inspect-viewer/README.md for container architecture, direct Docker usage, and CLI upload details.