Quick Start
Get up and running with ATHENA in 5 minutes.
Prerequisites
API key (contact [email protected])
Node.js 18+ or Python 3.9+
Step 1: Install SDK
npm install @athena-ai/sdkpip install athena-sdkStep 2: Initialize Client
import { Athena } from '@athena-ai/sdk';
const athena = new Athena({ apiKey: 'YOUR_API_KEY' });from athena import Athena
athena = Athena(api_key='YOUR_API_KEY')Step 3: Log a Decision
const result = await athena.calibrate.analyze({
userId: 'doctor_456',
aiRecommendation: 'Prescribe antibiotic',
userDecision: 'Prescribe antibiotic',
context: 'Patient symptoms: fever, cough',
confidence: 0.92
});
console.log(result.calibration); // "WELL_CALIBRATED"result = athena.calibrate.analyze(
user_id='doctor_456',
ai_recommendation='Prescribe antibiotic',
user_decision='Prescribe antibiotic',
context='Patient symptoms: fever, cough',
confidence=0.92
)
print(result.calibration) # "WELL_CALIBRATED"Step 4: Check Trust Calibration
Step 5: View Dashboard
Navigate to https://dashboard.athenatrust.ai to see:
Real-time trust calibration metrics
Bias detection alerts
User performance analytics
Compliance report generation
Using cURL
Prefer raw API calls? Here's the same flow with cURL:
Log a Decision
Get Trust Score
Next Steps
Authentication - Learn about API key security
Rate Limits - Understand usage limits
Trust Calibration - Deep dive into calibration concepts
API Reference - Full endpoint documentation
Need help? Contact [email protected]
Last updated