chidori Python SDK
Pure-stdlib HTTP client for a running chidori serve instance. No native
bindings, no third-party dependencies.
This package is not the runtime. It's an optional HTTP client for driving the Chidori runtime — the
chidoribinary — from a Python app. You don't need it to write or run agents (those are plain.tsfiles the runtime executes directly). Install the runtime separately, no Rust toolchain needed:curl -fsSL https://raw.githubusercontent.com/ThousandBirdsInc/chidori/main/scripts/install.sh | sh— see the project README.
Install
From PyPI:
pip install chidori
Or from a checkout of this repository:
pip install -e ./sdk/python
Usage
from chidori import AgentClient, Checkpoint
client = AgentClient("http://localhost:8080")
# Run an agent
session = client.run({"document": "Rust is a systems language."})
print(session.output)
# Save and replay a checkpoint — zero LLM calls on replay
checkpoint = session.checkpoint()
checkpoint.save("/tmp/session.json")
replayed = client.replay(Checkpoint.load("/tmp/session.json"))
assert replayed.output == session.output
# Durable TypeScript runs may include snapshot metadata in the checkpoint.
# The manifest is safe to inspect; raw VM snapshot bytes remain server-side.
if checkpoint.snapshot_manifest:
print(checkpoint.snapshot_manifest["abi"]["engine_fork"])
manifest = client.get_snapshot_manifest(session.id)
print(manifest["policy"]["typescript_imports"])
# Paused sessions (when the agent calls `input()`)
paused = client.run({"action": "delete-prod"})
if paused.status == "paused":
print("prompt:", paused.pending_prompt)
final = client.resume(paused.id, "yes")
# Multiplayer signals (when the agent calls `chidori.signal` / `pollSignal`):
# deliver {name, payload?, from?} to a run. A run paused-waiting on this name
# resolves + resumes (returns a Session); otherwise the signal is enqueued into
# the durable mailbox (returns a SignalQueued with the assigned delivery_seq).
from chidori import Session, SignalQueued
paused = client.run({"topic": "data-retention policy"})
print("awaiting signal:", paused.pending_signal_name) # -> "review"
result = client.signal(
paused.id, "review",
payload={"decision": "approve", "notes": "LGTM"},
from_={"kind": "human", "id": "mara"},
)
if isinstance(result, SignalQueued):
print("queued at delivery_seq", result.delivery_seq) # 202
else:
print(result.status, result.output) # 200 — resumed Session
# Live streaming: yields host calls, prompt stream events, then `done`
for evt in client.stream({"document": "hi"}):
if evt["type"] == "call":
print("call:", evt["record"]["function"])
elif evt["type"] == "prompt_delta":
print("delta:", evt["delta"])
elif evt["type"] == "done":
print("done:", evt["status"], evt["output"])
Snapshot-aware checkpoints include the replay call log plus optional manifest
metadata. Durable resume is exposed through client.resume(session_id, response) for paused sessions, recovering through persisted host-promise
metadata and the replay journal. Replay is the resume mechanism by design —
there is no live-VM image to restore; the manifest carries journal/scaffold
metadata rather than serialized VM bytes.
Mirrors the TypeScript SDK (sdk/typescript/) method-for-method. See the
top-level examples/sdk_demo.py for a longer walkthrough and
docs/running-modes.md for the HTTP session API this client wraps.
Timeouts, retries, and errors
Every request is bounded by timeout_seconds (default 300 — generous because
run() executes the whole agent before responding; pass 0 to disable).
Idempotent GETs are retried retries times (default 2, exponential backoff
from retry_delay_seconds) on connection errors, timeouts, and 429/502/503/504
responses. POSTs are never retried — run/resume/signal are not
idempotent. For stream() the timeout covers connection establishment only.
client = AgentClient("http://localhost:8080", timeout_seconds=60, retries=3)
# Against a production server (CHIDORI_API_KEY set — see docs/deployment.md),
# pass the bearer token; it is sent on every request, including stream().
# `headers={...}` merges extra headers (an explicit Authorization wins).
client = AgentClient("https://agents.example.com", api_key=os.environ["CHIDORI_API_KEY"])
Failures raise typed exceptions, all subclassing AgentClientError (itself a
RuntimeError, so existing handlers keep working):
from chidori import AgentClientError, ConnectionError, HttpError, TimeoutError
try:
client.signal(session_id, "review", payload={"decision": "approve"})
except HttpError as e:
if e.status == 404: # unknown session
...
elif e.status == 409: # run already terminal
...
else:
raise
except TimeoutError:
... # server hung past timeout_seconds
except ConnectionError:
... # nothing listening / connection refused
HttpError carries .status, the raw .body, and .detail (the server's
error field when the body was JSON), so the documented 400/404/409 semantics
are distinguishable without string-matching messages.
Testing
python3 -m unittest sdk/python/tests/test_client_http.py -v # HTTP layer: errors/timeout/retry (no binary needed)
cargo build # make sure target/debug/chidori is up to date
python3 -m unittest sdk/python/tests/test_session_api.py -v
The integration tests spin up a real chidori serve subprocess per
config (default / auth / concurrency / cors) and drive it through this
SDK against an in-process stdlib mock LLM server. No real provider
traffic; no third-party dependencies.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chidori-3.7.0.tar.gz.
File metadata
- Download URL: chidori-3.7.0.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6135f8c5e363b57f3243702a16cc7392a4cf4fd15c7ba9fe75c5922b3eb45d3a
|
|
| MD5 |
e913d95536f9f719ce08dc8e5cd96193
|
|
| BLAKE2b-256 |
0dfe7b602daca36bab01aeb6adc511d9e738308aacec6c911fee809ab517df23
|
Provenance
The following attestation bundles were made for chidori-3.7.0.tar.gz:
Publisher:
release.yml on ThousandBirdsInc/chidori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chidori-3.7.0.tar.gz -
Subject digest:
6135f8c5e363b57f3243702a16cc7392a4cf4fd15c7ba9fe75c5922b3eb45d3a - Sigstore transparency entry: 2279567844
- Sigstore integration time:
-
Permalink:
ThousandBirdsInc/chidori@6089250031841e18635c465b22afb936d5b5110d -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/ThousandBirdsInc
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6089250031841e18635c465b22afb936d5b5110d -
Trigger Event:
push
-
Statement type:
File details
Details for the file chidori-3.7.0-py3-none-any.whl.
File metadata
- Download URL: chidori-3.7.0-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0443ead37633d48b14986fabfe6498e8da55b69e9424357fb00ddeedd3148bd8
|
|
| MD5 |
19a209e8f723057a1ee70845495f3dd5
|
|
| BLAKE2b-256 |
130e9afe4a4f013ce7375ae3be42f37887aee23991662ee36f10bf54f9aa9813
|
Provenance
The following attestation bundles were made for chidori-3.7.0-py3-none-any.whl:
Publisher:
release.yml on ThousandBirdsInc/chidori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chidori-3.7.0-py3-none-any.whl -
Subject digest:
0443ead37633d48b14986fabfe6498e8da55b69e9424357fb00ddeedd3148bd8 - Sigstore transparency entry: 2279567868
- Sigstore integration time:
-
Permalink:
ThousandBirdsInc/chidori@6089250031841e18635c465b22afb936d5b5110d -
Branch / Tag:
refs/tags/v3.7.0 - Owner: https://github.com/ThousandBirdsInc
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6089250031841e18635c465b22afb936d5b5110d -
Trigger Event:
push
-
Statement type: