Quick Start

Get up and running with ATHENA in 5 minutes.

Prerequisites

Step 1: Install SDK

npm install @athena-ai/sdk

Step 2: Initialize Client

import { Athena } from '@athena-ai/sdk';

const athena = new Athena({ apiKey: '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"

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


Need help? Contact [email protected]

Last updated