Quickstart
Trace your first run
- Install the SDK
pip install foxhound-ai - Wrap the agent entrypoint
from foxhound import trace @trace(org="acme") def agent(input: str): return run_agent(input) - Inspect traces and replay failures
Open Foxhound and inspect the run: tool calls, model steps, branching, and the exact point where behavior changed.