11Verification Engines
4Language SDKs
3Framework Integrations
100%Deterministic
β‘ Quick Install
Python
pip install qwedTypeScript
npm install @qwed-ai/sdkGo
go get github.com/qwed-ai/qwed-goRust
cargo add qwed⨠Features
π― Deterministic Verification
100% accurate math and logic verification using SymPy and Z3. No hallucinations, just proofs.
βοΈ 11 Verification Engines
Math, Logic, Code, SQL, Stats, Fact, Image, Reasoning, Graph, Taint, and Schema engines for comprehensive coverage.
π¦ Multi-Language SDKs
Official SDKs for Python, TypeScript, Go, and Rust. Use QWED in any stack.
π Framework Integrations
Native integrations with LangChain, LlamaIndex, and CrewAI for AI agent development.
π Cryptographic Attestations
JWT-based proofs with ES256 signatures. Verify that a verification occurred.
π€ Agent Verification
Pre-execution checks, budget enforcement, and activity logging for AI agents.
π§ Verification Engines
π’MathSymPy + Calculus
π§ LogicZ3 + Quantifiers
π»CodeMulti-Lang AST
ποΈSQLSQLGlot + Limits
πStatsWasm Sandbox
πFactTF-IDF
πΈοΈGraphKG Triples
πΌοΈImageDeterministic
π΅οΈTaintData Flow Analysis
πSchemaJSON + Math
πReasoningMulti-LLM
π See It In Action
Python
from qwed_sdk import QWEDClient
client = QWEDClient(api_key="qwed_...")
# Verify math
result = client.verify_math("2+2=4")
print(result.verified) # True
# Verify logic
result = client.verify_logic("(AND (GT x 5) (LT y 10))")
print(result.model) # {"x": 6, "y": 9}
# Check code security
result = client.verify_code(code)
print(result.vulnerabilities) # []TypeScript
import { QWEDClient } from '@qwed-ai/sdk';
const client = new QWEDClient({ apiKey: 'qwed_...' });
// Verify math
const result = await client.verifyMath('2+2=4');
console.log(result.verified); // true
// Verify logic
const logic = await client.verifyLogic('(AND (GT x 5))');
console.log(logic.model); // { x: 6 }
// Batch verify
const batch = await client.verifyBatch([...]);
console.log(batch.summary.successRate);π Integrations
π¦ LangChain
from qwed_sdk.langchain import QWEDToolπ¦ LlamaIndex
from qwed_sdk.llamaindex import QWEDQueryEngineπ’ CrewAI
from qwed_sdk.crewai import QWEDVerifiedAgentReady to verify?
Start building with deterministic AI verification today.