Skip to main content

Weave Integration

Weave by Weights & Biases provides LLM tracing.

Setup

pip install weave
export WANDB_API_KEY=xxx

Usage

from praisonai_tools.observability import obs

obs.init(provider="weave")

with obs.trace("workflow"):
    # Your agent code
    pass