Skip to main content

LangWatch Integration

LangWatch provides LLM monitoring and analytics.

Setup

pip install langwatch
export LANGWATCH_API_KEY=xxx

Usage

from praisonai_tools.observability import obs

obs.init(provider="langwatch")

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