From b05cf1816c2982baedfe9b367195926ee966c804 Mon Sep 17 00:00:00 2001 From: Lenz Date: Fri, 7 Aug 2026 12:16:25 +0300 Subject: [PATCH] docs: fix ask quickstart field (reply.content) + integer lenz_score comment --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84a831a..77c0f26 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ for c in quick.claims: # 4. ask — follow-up grounded on a verification reply = client.ask.send(v.verification_id, message="Which source is strongest?") -print(reply.reply) +print(reply.content) ``` `assess` and `verify` share a result cache server-side: if a claim @@ -112,7 +112,7 @@ client = Lenz(api_key="lenz_...") v = client.verify_and_wait(claim="Sharks don't get cancer") print(v.verdict, v.lenz_score) -# False 2.0 +# False 2 for source in v.sources[:3]: print(" -", source.title, source.url)