Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Integrate Comet Opik observability with PraisonAI agents
pip install opik export OPIK_API_KEY=xxx
from praisonai_tools.observability import obs from praisonaiagents import Agent obs.init(provider="opik") # Everything is auto-traced! agent = Agent(name="Assistant", instructions="You are helpful.", model="gpt-4o-mini") response = agent.chat("Hello!")
from praisonai_tools.observability import obs obs.init(provider="opik", auto_instrument=False) with obs.trace("workflow"): # Your agent code pass