Documentation Index
Fetch the complete documentation index at: https://spacesail.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
This example demonstrates how to instrument your Agno agent with OpenInference and send traces to a local Arize Phoenix collector.
Code
import os
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.duckduckgo import DuckDuckGoTools
from phoenix.otel import register
# Set the local collector endpoint for Arize Phoenix
os.environ["PHOENIX_COLLECTOR_ENDPOINT"] = "http://localhost:6006"
# Configure the Phoenix tracer
tracer_provider = register(
project_name="agno-stock-price-agent", # Default is 'default'
auto_instrument=True, # Automatically use the installed OpenInference instrumentation
)
# Create and configure the agent
agent = Agent(
name="Stock Price Agent",
model=OpenAIChat(id="gpt-5-mini"),
tools=[DuckDuckGoTools()],
instructions="You are an internet search agent. Find and provide accurate information on any topic.",
debug_mode=True,
)
# Use the agent
agent.print_response("What are the latest developments in artificial intelligence?")
Usage
Install Dependencies
pip install -U agno ddgs arize-phoenix openai openinference-instrumentation-agno opentelemetry-sdk opentelemetry-exporter-otlp
Start Local Collector
Run the following command to start the local collector: Run the Agent
python cookbook/observability/arize_phoenix_via_openinference_local.py