Exporting and Sharing
Complete guide to exporting evaluation results and sharing them publicly
Quick Start
Export an Evaluation
- 1. Navigate to your evaluation detail page
- 2. Click the Export button in the header
- 3. Choose your export options:
- • Download only: Get a JSON file
- • Publish as demo: Make it publicly accessible
Share an Evaluation
- 1. Click Export → Check "Make this export public as demo"
- 2. (Optional) Enter a custom share ID
- 3. Click Export & Publish
- 4. Copy the generated share link
- 5. Share with unknownone!
Export Options
Standard Export (Download Only)
Downloads a comprehensive JSON file with all evaluation data:
{
"evaluation": {
"id": "eval-123",
"name": "Chatbot Safety Test",
"type": "unit_test",
"category": "adversarial"
},
"timestamp": "2025-11-11T20:00:00Z",
"summary": {
"totalTests": 50,
"passed": 45,
"failed": 5,
"passRate": "90%"
},
"qualityScore": {
"overall": 90,
"grade": "A",
"metrics": { ... },
"insights": [ ... ],
"recommendations": [ ... ]
},
"testResults": [ ... ]
}Filename Format
• Unit Test:
unit_test-adversarial-chatbot-safety-1731360000.json• Human Eval:
human_eval-legal-qa-evaluation-1731360000.json• Model Eval:
model_eval-ragas-rag-system-1731360000.json• A/B Test:
ab_test-prompt-optimization-1731360000.jsonPublishing as Demo
What is a Public Demo?
It becomes publicly accessible via a share link
unknownone can view results without signing in
Viewers can copy or download the data
Perfect for showcasing your work or sharing with stakeholders
How to Publish
Option 1: Via Export Modal
- 1. Click Export button
- 2. Check ☑️ "Make this export public as demo"
- 3. (Optional) Enter custom share ID:
my-chatbot-eval - 4. Click Export & Publish
Option 2: Via API
See API Methods section below
Custom Share IDs
Instead of auto-generated tokens, you can use memorable share IDs:
my-chatbot-evalcompunknown-q4-benchmarkrag-system-testsafety-assessment-2024Rules: 3-50 chars, letters, numbers, hyphens, underscores only
Sharing Links
Link Formats
Web Interface:
https://eval.ai/demo/{shareId}API Access:
https://eval.ai/api/demo/{shareId}What Viewers See
Evaluation Details
- • Name, type, and category
- • Creation timestamp
- • Test case count
Results & Actions
- • Pass/fail summary
- • Quality score (if computed)
- • Download full JSON
- • Copy share link
API Methods
Export Evaluation
GET /api/evaluations/{id}/runs/{runId}/exportReturns evaluation data in the standard export format
Create Public Share
POST /api/reports
{
"evaluationId": "eval-123",
"evaluationRunId": "run-456",
"expiresInDays": 30,
"shareId": "my-custom-id" // optional
}{
"shareToken": "hex-token",
"shareUrl": "https://eval.ai/demo/my-custom-id",
"apiUrl": "https://eval.ai/api/demo/my-custom-id",
"expiresAt": "2024-02-15T00:00:00.000Z"
}Best Practices
✅ Do
- • Use descriptive share IDs for easy sharing
- • Set appropriate expiration dates for sensitive data
- • Review data before publishing publicly
- • Use custom domains for white-label sharing
❌ Don't
- • Share sensitive test data or PII
- • Use share IDs that reveal internal information
- • Forget to set expiration for temporary shares
- • Assume share links are private