Prerequisites
- Python 3.10 or later
- A PandaProbe account with an API key
Install the SDK
Base install:- pip
- uv
Install multiple extras:
- pip
- uv
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install the PandaProbe Python SDK and configure your environment
pip install pandaprobe
uv add pandaprobe
| Extra | Install Command | Description |
|---|---|---|
| OpenAI | pip install "pandaprobe[openai]" | Traces Chat Completions and Responses API |
| Anthropic | pip install "pandaprobe[anthropic]" | Traces Messages API |
| Gemini | pip install "pandaprobe[gemini]" | Traces generate_content API |
| LangGraph | pip install "pandaprobe[langgraph]" | LangGraph callback handler |
| Google ADK | pip install "pandaprobe[google-adk]" | Google Agent Development Kit adapter |
| Claude Agent SDK | pip install "pandaprobe[claude-agent-sdk]" | Claude Agent SDK adapter |
| CrewAI | pip install "pandaprobe[crewai]" | CrewAI adapter |
| OpenAI Agents | pip install "pandaprobe[openai-agents]" | OpenAI Agents SDK adapter |
pip install "pandaprobe[openai,anthropic,gemini]"
uv add "pandaprobe[openai,anthropic,gemini]"
export PANDAPROBE_API_KEY="your-api-key"
export PANDAPROBE_PROJECT_NAME="my-project"
pandaprobe.init(). See Project Configuration for details.import pandaprobe
print(pandaprobe.__version__)
