Skip to main content
Documentation

LLMverify Documentation

Complete guides for the local-first LLM output verification toolkit. Zero network requests. Zero telemetry. v1.5.2.

$ npm install llmverify

Quick Start

terminal
# Install
npm install llmverify

# Run the setup wizard
npx llmverify wizard

# Quick verification
npx llmverify run "Your AI output here" --preset dev

# Or use programmatically
import { verify, isInputSafe, redactPII } from 'llmverify';

const result = await verify({ content: aiOutput });
console.log(result.risk.level); // 'low' | 'moderate' | 'high' | 'critical'

Want to see llmverify in action?

Try the Live Demo