Skip to main content

tracehouse SDK — push traces & spans to tracehouse from Python, wandb-style.

Project description

tracehouse (Python)

Push traces and spans to tracehouse from any Python script — wandb-style, zero install dependencies.

pip install tracehouse-sdk

Quickstart

import tracehouse as cm

cm.init(
    api_key="ba_…",          # or set TRACEHOUSE_API_KEY
    project="my-bot",
    session_id="run-001",    # idempotent: same id resumes the same trace
    task_name="demo task",
    model="claude-opus-4-7",
)

cm.log_user("hello")
cm.log_assistant("hi there")
cm.log_tool_use("Read", {"file_path": "x.py"})
cm.log_tool_result("file contents")

cm.finish(outcome="good", metadata={"k": "v"})

Class-based / with

import tracehouse as cm

with cm.Run(project="my-bot", session_id="run-002") as run:
    run.log_user("how do I install jq?")
    run.log_assistant("brew install jq")
    # implicit run.finish() on exit; on exception → outcome="bad" + error metadata

API

  • cm.init(**kwargs) -> Run — create the module-level run (wandb style).
  • cm.Run(**kwargs) — explicit run; identical kwargs.
  • cm.log_user(text), cm.log_assistant(text), cm.log_thinking(text), cm.log_tool_use(tool, input), cm.log_tool_result(text, parent_span_id=…), cm.log_attachment(name, attributes) — convenience helpers.
  • cm.log(kind=…, name=…, text=…, attributes=…, parent_span_id=…) — generic.
  • cm.finish(outcome="good"|"bad"|"neutral", metadata={…}, task_name=…, model=…).

Configuration

Argument Env var Default
api_key TRACEHOUSE_API_KEY required
api_base TRACEHOUSE_API_BASE https://tracehouse.ai
session_id random py-<uuid>
project None
scaffold "python-sdk"
machine_id derived from hostname

Span kinds

user_msg | assistant_msg | tool_use | tool_result | thinking | attachment

Common attributes the UI surfaces directly: text (string), result_text (string), tool_input (object). Anything else lands in the raw JSON view.

Media — images & videos

Log images and videos to a run with cm.Image / cm.Video — inside run.log({…}) next to metrics, or via run.log_image / run.log_video. They appear under the run's Media tab, grouped by key. Bytes are sent raw (no base64), capped at 25 MB each.

import tracehouse as cm

run = cm.init_run(project="demo", name="qwen-sft")

# cm.Image accepts a file path, raw bytes, a PIL image, or a numpy array
# (Pillow is only needed for arrays). cm.Video takes a path or bytes (mp4/webm/mov).
run.log({"loss": loss, "samples": cm.Image("out/epoch3.png", caption="epoch 3")}, step=3)

run.log_image("val/grid", "preview.png", caption="val grid", step=10)
run.log_video("rollout", "clip.mp4", step=10)

RL: runs + rollout traces

Log a training run's metrics and its per-step rollout conversations together. run.rollout(step=…) opens a chat trace already linked to the run, so every rollout shows up under the run's Rollouts tab (step → trace).

import tracehouse as cm

run = cm.init_run(project="rl", name="ppo-v1", config={"lr": 1e-5})

for step in range(1000):
    # One chat trace per rollout, tied to this run + step.
    with run.rollout(step=step) as t:
        t.log_user(state)
        t.log_assistant(action)
        t.log_tool_result(f"reward={reward}")
    run.log({"reward": reward, "kl": kl}, step=step)   # metrics on the run

run.finish()

rollout() returns a normal Run (any log_* helper works) and inherits the run's auth — so an anonymous run produces anonymous rollouts under the same identity, and a single claim link covers the run and all its traces. step defaults to the run's auto-incrementing counter; pass name= / session_id= to override the trace labels.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tracehouse_sdk-0.5.1.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracehouse_sdk-0.5.1-py3-none-any.whl (28.8 kB view details)

Uploaded Python 3

File details

Details for the file tracehouse_sdk-0.5.1.tar.gz.

File metadata

  • Download URL: tracehouse_sdk-0.5.1.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tracehouse_sdk-0.5.1.tar.gz
Algorithm Hash digest
SHA256 9843d4af40b4dfbf1d4a7434539c1e2f480b40bae9b33817bf1020c122d268bd
MD5 a8fb5dcf9498432b785111159eb7666e
BLAKE2b-256 eb3f0bd4bf7cd2fa5eba3e8bfa08255fcad8072488536eb86f5be52f96bc3556

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracehouse_sdk-0.5.1.tar.gz:

Publisher: publish.yml on AlexWortega/tracehouse-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tracehouse_sdk-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: tracehouse_sdk-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tracehouse_sdk-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cc7be74c0dc426850be6a50119a96ac7fea39e08895a1d09653c3988794fec6f
MD5 29085085ee1a3af10ff694266d8538d4
BLAKE2b-256 39cc0e1992aeb2ff0842b4a5f01dbdf5e8d8639f329f1b45166d6e6169306e2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracehouse_sdk-0.5.1-py3-none-any.whl:

Publisher: publish.yml on AlexWortega/tracehouse-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page