Skip to content
Benmebrouk edited this page Apr 12, 2026 · 2 revisions

Wauldo TypeScript SDK

Verified AI answers from your documents — or no answer at all.

npm install wauldo · npm · GitHub · Docs · Free API Key

Quick Start

npm install wauldo
import { HttpClient } from 'wauldo';

const client = new HttpClient({ baseUrl: 'https://api.wauldo.com', apiKey: 'YOUR_KEY' });

const result = await client.guard(
  'Returns accepted within 60 days.',
  'Our policy allows returns within 14 days.',
);
console.log(result.verdict);            // "rejected"
console.log(result.claims[0]?.reason);  // "numerical_mismatch"

Pages

Clone this wiki locally