Python SDK
ML training loops, Rake-style scripts, AI agents.
Decorator + context-manager. The most common path for long-running Python work — training runs, scrapers, data pipelines.
Setup
- 1pip install chirp-sdk
- 2chirp login (if you haven't yet)
- 3Import
trackorChirpAgentand call it in your code
from chirp import track
@track("model training", theme="#818cf8")
def train():
for epoch in range(10):
train_one_epoch()
train() # phone shows a Live Activity for the whole call