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

Wauldo Python SDK

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

pip install wauldo · PyPI · GitHub · Docs · Free API Key

Quick Start

pip install wauldo
from wauldo import HttpClient

client = HttpClient(base_url="https://api.wauldo.com", api_key="YOUR_API_KEY")

result = client.guard(
    text="Returns accepted within 60 days.",
    source_context="Our policy allows returns within 14 days.",
)
print(result.verdict)           # "rejected"
print(result.claims[0].reason)  # "numerical_mismatch"

Pages

Clone this wiki locally