Copy
Ask AI
"""
Arize Phoenix Via OpenInference
===============================
Demonstrates instrumenting an Agno agent with OpenInference and sending traces to Phoenix.
"""
import asyncio
import os
from agno.agent import Agent
from agno.db.in_memory import InMemoryDb
from agno.models.openai import OpenAIChat
from agno.tools.yfinance import YFinanceTools
from phoenix.otel import register
from pydantic import BaseModel
# ---------------------------------------------------------------------------
# Setup
# ---------------------------------------------------------------------------
os.environ["PHOENIX_API_KEY"] = os.getenv("PHOENIX_API_KEY")
os.environ["PHOENIX_COLLECTOR_ENDPOINT"] = (
"https://app.phoenix.arize.com/" # Add the suffix for your organization
)
# Configure the Phoenix tracer
tracer_provider = register(
project_name="default", # Default is 'default'
auto_instrument=True, # Automatically use the installed OpenInference instrumentation
)
class StockPrice(BaseModel):
stock_price: float
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
name="Stock Price Agent",
model=OpenAIChat(id="gpt-5.2"),
tools=[YFinanceTools()],
db=InMemoryDb(),
instructions="You are a stock price agent. Answer questions in the style of a stock analyst.",
session_id="test_123",
output_schema=StockPrice,
)
# ---------------------------------------------------------------------------
# Run Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
asyncio.run(
agent.aprint_response("What is the current price of Tesla?", stream=True)
)
Run the Example
Copy
Ask AI
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/92_integrations/observability
# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate
# Export relevant API keys
export PHOENIX_API_KEY="***"
export PHOENIX_COLLECTOR_ENDPOINT="***"
python arize_phoenix_via_openinference.py