Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Official Python SDK for the [Lenz Fact Checking API for AI Product Teams](https:

**Four API primitives, one research-depth ladder.**

- `extract` β€” pull verifiable claims out of any text. Free, 1000 calls/key/day.
- `extract` β€” pull verifiable claims out of any text. Free, 1000 calls/account/day (shared across your API keys).
- `assess` β€” fast 3-model panel verdict in ~5-10s. Sync, paid.
- `verify` β€” full 8-model pipeline with citations in ~90s. Async, paid.
- `ask` β€” follow-up questions grounded on a verification.
Expand Down Expand Up @@ -126,7 +126,7 @@ hit the full pipeline (~60-90s) β€” use webhooks for production async flows.

## What you get on the client

- **`client.extract(text=...)`** β†’ `ExtractedClaims`. Free, capped at 1000/key/day.
- **`client.extract(text=...)`** β†’ `ExtractedClaims`. Free, capped at 1000/account/day.
- **`client.assess(text=...)`** β†’ `AssessResponse`. Sync, ~5-10s, returns one entry per identified claim.
- **`client.verify(...)`** β†’ `TaskAccepted`. Async submit; returns a `task_id`. Get the result by polling (`client.wait(...)` / `client.get_status(...)`) or via a webhook.
- **`client.verify_and_wait(...)`** β†’ `Verification`. Submit + poll until the pipeline lands (sync ergonomic). Equivalent to `wait(verify(...))`.
Expand Down
Loading
Loading