AI Assess TechAI Assessment Tool
Powered by AI Assess Tech

Got Responsible AI?

What's Your AI's
Morality Score?

Test your AI system across 4 moral dimensions in under 10 minutes. Free assessment with instant results.

4 Moral Dimensions: Lying, Cheating, Stealing, Harm
120 questions answered in ~10 minutes
Instant pass/fail with detailed scores
✓ Free to use✓ No account required✓ Your API key stays in your browser

Start Your Assessment

By continuing, you agree to receive results via email.

Integrate with Your CI/CD

Use the same SDK for both assessments and evaluations. One key, two capabilities.

Assessment — 120 Questions
import { AIAssessClient } from '@aiassesstech/sdk';

const client = new AIAssessClient({
  healthCheckKey: process.env.AIASSESS_KEY!
});

const result = await client.assess(
  async (question) => {
    return await myAI.chat(question);
  }
);

console.log(result.overallPassed);
// true
console.log(result.classification);
// "Well Adjusted"
Evaluation — Paste Output
import { AIAssessClient } from '@aiassesstech/sdk';

const client = new AIAssessClient({
  healthCheckKey: process.env.AIASSESS_KEY!
});

const result = await client.evaluate({
  outputText: "AI-generated text...",
  targetAi: {
    provider: "anthropic",
    model: "claude-sonnet-4"
  },
});

console.log(result.verdict);
// "GREEN"
console.log(result.overallScore);
// 0.83

Available as @aiassesstech/sdk (TypeScript) and aiassess (Python)