Owner: Engineering Team | Last Updated: 2026-01-30 | Status: Current
WWAI integrates with 9 external AI detection services to provide comprehensive cross-validation scoring. For the full AI Models overview, see AI Models Overview.
| # | Detector | Score Field | Specialization | API Type |
|---|---|---|---|---|
| 1 | GPTzero | gptZero |
Academic-focused AI detection | REST API |
| 2 | ZeroGPT | zeroGPT |
General-purpose AI detection | REST API |
| 3 | Sapling | sapling |
AI content analysis | REST API |
| 4 | Copyleaks | copyLeaks |
Plagiarism + AI detection | REST API |
| 5 | Writer | writer |
Content authenticity verification | REST API |
| 6 | Turnitin | turnitin |
Academic integrity checking | REST API |
| 7 | Originality | originality |
AI + plagiarism detection | REST API |
| 8 | Crossplag | crossPlag |
Cross-language plagiarism + AI | REST API |
| 9 | Content at Scale | contScale |
SEO-focused AI detection | REST API |
interface StatusProps {
is_scored: boolean; // Whether scoring completed
total: number; // Aggregate score (0-100)
gptZero: number; // 0-100
copyLeaks: number;
zeroGPT: number;
crossPlag: number;
sapling: number;
writer: number;
contScale: number;
originality: number;
turnitin: number;
}
Score interpretation: 0-100% confidence that text is AI-generated. Lower scores = more human-like.
Detector list defined in data/publicDetectors.ts on the web app.
See Guide: Adding a New Detector
| Date | Author | Change |
|---|---|---|
| 2026-01-30 | Admin | Initial creation |
Prev: Detector Model Architecture | Up: Home