Docs › Pydantic AI and smolagents with RunVouch

Pydantic AI and smolagents with RunVouch

These libraries are a few hundred lines you call from a script. The script is what runs on cron, so the script is what gets wrapped; no callbacks are required for the basic detectors.

How it runs on Pydantic AI and smolagents

Wrap the script with rv run for MISSED, FAILED, STALLED, DRIFT and evidence. Add run.tool() calls from a tool wrapper if you want retry-storm and per-call cost.

Store the key

An environment variable in the cron environment.

Wrap the job

# crontab
0 6 * * * rv run morning-digest --evidence-file /out/digest.md -- python digest.py

# digest.py (Pydantic AI); smolagents is the same shape
from pydantic_ai import Agent
agent = Agent("anthropic:claude-sonnet-5", system_prompt="...")
result = agent.run_sync("Summarise overnight changes")
open("/out/digest.md", "w").write(result.output)

rv fails open: if RunVouch is unreachable the job still runs and you get one warning line.

Register the cadence and caps

rv agent nightly-report --cadence 24h --grace 30m --max-runtime 1h --evidence --cap-run-cost 2

Register the agent once, from anywhere with the key. Cadence is what turns a schedule that stopped into an alert; --evidence makes a run without evidence a failure; the caps pause the agent when it overspends.

What goes silent on Pydantic AI and smolagents

What RunVouch detects

AlertWhat it means here
MISSEDcadence plus grace passed and no run started
FAILEDnon-zero exit or a reported failure, with the stderr excerpt
NO_EVIDENCEthe run said ok but the file, URL or assertion you required is missing
STALLEDa run started and never ended within max runtime
RETRY_STORMthe same tool called with identical input many times in one run
BUDGET_RUN / BUDGET_DAYcost cap crossed; the agent is paused until you resume it
DRIFTduration or output size far off its 7-run baseline

Need a key? Get a free key · Stuck? contact