Install
Auth
Create an API key under Workspace settings → API keys — see the API keys guide.What you can do
Every REST resource maps to a namespace on the client:Resources
Source
calibrate-python-sdk
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get started with Calibrate’s Python SDK
uv add calibrate-sdk
from calibrate import Calibrate
client = Calibrate(api_key="your_api_key")
for agent in client.agents.list():
print(agent.uuid, agent.name)
| Namespace | Methods |
|---|---|
client.agents | create, list, get, resolve, update, verify_connection |
client.tests | create, bulk_create, list, get, update |
client.evaluators | create, create_version, list, get |
client.agent_tests | link, run, run_batch, benchmark, list_for_agent, list_runs_for_agent, get_run, get_benchmark |
client.annotation_tasks | create, add_items, update_items, link_evaluator, create_evaluator_run, get_evaluator_run, get_agreement, get_summary, list, get |