Developers
Python SDK
A thin, typed client over the REST API for evals, CI, and notebooks.
01Install
pip install groundre
02Verify claims
from groundre import Client
gr = Client(api_key="...")
res = gr.verify(
binary="suspect.exe",
claims=[{"type": "capability",
"capability_name": "keylogging",
"cited_api": "SetWindowsHookExW"}],
)
print(res.summary.safe_to_proceed)
for v in res.verdicts:
print(v.claim_id, v.verdict, v.evidence)03Grade your model
Point the SDK at your RE agent’s output across a fixture set and publish a deterministic hallucination rate — the same metric behind the public scoreboard.
More for developers