SignedAI
Multi-LLM verification consensus API — cryptographically signed responses from up to 8 LLMs, reducing hallucination to 0.3% with complete audit trails.
Why AI Verification Matters
Individual LLMs have unique failure modes — training data cutoffs, model bias, and hallucination patterns. SignedAI uses multi-LLM consensus to cross-verify outputs across up to 8 LLMs, reducing hallucination from 15% to 0.3%.
Every verified response is cryptographically signed using ED25519, creating an immutable audit trail. This is essential for regulated industries that require proof of AI decision trails.
6-Stage Verification Pipeline
Every SignedAI request flows through every stage — no step is skipped.
Receives the request, validates schema, assigns session ID, and classifies task priority.
JITNA selects which models to engage from the HexaCore 7-model roster based on task type.
All selected models independently process the same request — no cross-contamination.
Each response is scored across 8 dimensions: accuracy, completeness, consistency, relevance, safety, confidence, provenance, and timing.
Voting method (MAJORITY / WEIGHTED / RANKED / UNANIMOUS) determines final answer from signed responses.
Returns signed response with ED25519 signature, consensus score, model roster used, and full attestation breakdown.
Verification in Action
Sample consensus result from 3 LLMs — Tier 4 · MAJORITY voting
"What is the recommended insulin dosage protocol for Type 1 diabetic adolescents?"
Verified against ADA Guidelines 2024
Confirmed — with weight-based dosing caveat
Aligned — recommends Endocrinologist consult
Verification Capabilities
Multi-LLM Consensus
Query up to 8 LLMs simultaneously and achieve consensus through cross-verification algorithms.
Cryptographic Signing
Every verified response is cryptographically signed — tamper-proof and legally auditable.
Complete Audit Trails
Full transparency — every step from query to response is logged and traceable.
99.7% Accuracy
Reduce hallucination from 15% to 0.3% — enterprise-grade accuracy for critical applications.
API Pricing (Per Review)
Pay only for what you use — pick the Tier that matches the criticality of your task.
Single best-match model. Fast and cheap for non-critical AI queries.
4 models, majority consensus. Balanced accuracy for production workflows.
6 models, weighted by domain proficiency. High confidence for regulated sectors.
All 8 models, 75% unanimous consensus required. Maximum trust for legal, medical, and financial AI.
Quick Start
import { SignedAI } from '@rctlabs/signed-ai';
const verifier = new SignedAI({
apiKey: process.env.SIGNED_AI_KEY
});
const result = await verifier.verify({
prompt: "What is the capital of Thailand?",
models: ["gpt-4", "claude-3", "gemini"],
threshold: 0.95
});
console.log(result);
// { answer: "Bangkok", confidence: 0.997,
// signature: "ED25519:...", consensus: 3/3 }