truthlens 0.1.0

AI hallucination detector — formally verified trust scoring for LLM outputs
Documentation

TruthLens — AI Hallucination Detector

Analyzes AI-generated text for hallucination risk using linguistic signals, claim decomposition, and formally verified trust scoring.

Quick Start

use truthlens::{analyze, TrustReport};

let text = "Albert Einstein was born in 1879 in Ulm, Germany.";
let report = analyze(text);
println!("Trust: {:.0}% — {}", report.score * 100.0, report.risk_level);