Quickstart

Trace your first run

  1. Install the SDK
    pip install foxhound-ai
  2. Wrap the agent entrypoint
    from foxhound import trace
    
    @trace(org="acme")
    def agent(input: str):
        return run_agent(input)
  3. Inspect traces and replay failures

    Open Foxhound and inspect the run: tool calls, model steps, branching, and the exact point where behavior changed.