opentelemetry-instrumentation-openai-agents 0.60.0


pip install opentelemetry-instrumentation-openai-agents

  Latest version

Released: Apr 19, 2026

Project Links

Meta
Author: Gal Kleinman, Nir Gazit
Requires Python: <4,>=3.10

Classifiers

OpenTelemetry OpenAI Agents Instrumentation

This library enables tracing of agentic workflows implemented using the OpenAI Agents framework, allowing visibility into agent reasoning, tool usage, and decision-making steps.

Installation

pip install opentelemetry-instrumentation-openai-agents

Example usage

from opentelemetry.instrumentation.openai_agents import OpenAIAgentsInstrumentor

OpenAIAgentsInstrumentor().instrument()

Privacy

By default, this instrumentation logs prompts, completions, and embeddings to span attributes. This gives you a clear visibility into how your LLM application is working, and can make it easy to debug and evaluate the quality of the outputs.

However, you may want to disable this logging for privacy reasons, as they may contain highly sensitive data from your users. You may also simply want to reduce the size of your traces.

To disable logging, set the TRACELOOP_TRACE_CONTENT environment variable to false.

TRACELOOP_TRACE_CONTENT=false
Extras:
Dependencies:
opentelemetry-api (<2,>=1.38.0)
opentelemetry-instrumentation (>=0.59b0)
opentelemetry-semantic-conventions-ai (<0.6.0,>=0.5.1)
opentelemetry-semantic-conventions (>=0.59b0)