llmverify
Version:
AI Output Verification Toolkit — Local-first LLM safety, hallucination detection, PII redaction, prompt injection defense, and runtime monitoring. Zero telemetry. OWASP LLM Top 10 aligned.
13 lines (12 loc) • 413 B
TypeScript
/**
* CSM6 Security Module
*
* Comprehensive security, privacy, and safety checks.
*
* @module csm6/security
* @author Haiec
* @license MIT
*/
export { checkPromptInjection, sanitizePromptInjection, getInjectionRiskScore, isInputSafe } from './prompt-injection';
export { checkPII, redactPII, containsPII, getPIIRiskScore } from './pii-detection';
export { checkHarmfulContent } from './harmful-content';