openinference-instrumentation
OpenInference instrumentation utilities
What it is and what it does
OpenInference Instrumentation is a utility library that bridges typed annotation and evaluation objects into OpenTelemetry span attributes following the OpenInference specification. It provides helper functions to flatten Annotation objects (with fields like name, score, label, explanation, annotator_kind, and metadata) into span attributes at different scopes (span, trace, or session), and context managers to attach session IDs, user IDs, custom metadata, tags, and prompt template information to spans during execution.
The package is designed for teams instrumenting LLM applications and AI systems that need to attach structured evaluation results, annotations, and operational context to their traces. It depends on opentelemetry-api, opentelemetry-sdk, and openinference-semantic-conventions to ensure compatibility with standard observability tooling. The library handles JSON serialization of metadata and manages scope-specific prefixes automatically, reducing boilerplate in tracing code.
Use it for:
- Attach LLM evaluation scores and hallucination labels to spans for post-hoc analysis of model outputs.
- Track multi-turn conversations by wrapping code blocks with session and user context managers.
- Log prompt templates with versions and variable bindings to spans for prompt management and debugging.
- Add custom metadata and tags to traces for filtering and grouping related requests in observability platforms.
- Standardize annotation attributes across multiple instrumentation points using the Annotation model.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides utility functions to convert typed annotation and evaluation objects into OpenInference span attributes, and context managers to attach session, user, metadata, and prompt template information to traced spans.
Yes. The package is actively maintained, has low install friction, carries a permissive Apache-2.0 license, and provides a well-designed abstraction for a common need in LLM observability. Use it if you are already using OpenTelemetry and need to attach structured annotations or evaluation data to spans in a standardized way.
Install
openinference-instrumentation on PyPI
pip
pip install openinference-instrumentationuv
uv add openinference-instrumentationpoetry
poetry add openinference-instrumentationInstalling openinference-instrumentation
Before you install
Low friction installation with a pure-Python wheel. Actively maintained with a release 7 days ago and 1147 repository stars. Depends on opentelemetry-api, opentelemetry-sdk, and openinference-semantic-conventions, all standard observability packages.
License in practice
Apache-2.0 permissive license allows commercial and private use with minimal restrictions; suitable for most projects.
Quickstart
pip install openinference-instrumentation
from openinference.instrumentation import (
Annotation,
get_annotation_attributes,
)
span_annotations = get_annotation_attributes(
annotations=[Annotation(name="hallucination", label="factual")]
)
span.set_attributes(span_annotations)
Requires Python 3.10 or later (supports up to 3.14).
Verify before relying
- Whether the package works with OpenTelemetry versions older than those in the current SDK release.
- Performance impact of context manager overhead in high-throughput tracing scenarios.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (<3.15,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — openinference-semantic-conventions, opentelemetry-api, opentelemetry-sdk, wrapt |
| Maintenance | actively maintained — 7 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 8,310,434/month — #1,636 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: openinference_instrumentation-0.1.57-py3-none-any.whl
Tags
More Monitoring packages
Wraps any iterable to display a real-time…
copyleft · top 100 on PyPI
opentelemetry-semantic-conventionsProvides generated Python code for…
permissive · top 100 on PyPI
opentelemetry-sdkProvides the reference implementation of the…
permissive · top 100 on PyPI
opentelemetry-apiProvides the abstract API and interfaces for…
permissive · top 100 on PyPI
opentelemetry-exporter-otlp-proto-httpExports OpenTelemetry observability data to an…
permissive · top 1,000 on PyPI
opentelemetry-instrumentationProvides automatic instrumentation commands and…
permissive · top 1,000 on PyPI
openinference-instrumentation-openaiAuto-instruments OpenAI Python SDK calls to…
permissive · top 5,000 on PyPI
openinference-instrumentation-mcpAuto-instruments MCP tool calls to propagate…
permissive · top 15,000 on PyPI
openinference-instrumentation-langchainAuto-instruments LangChain applications to…
permissive · top 5,000 on PyPI
openinference-instrumentation-claude-agent-sdkAuto-instruments Claude Agent SDK calls to emit…
permissive · top 15,000 on PyPI
openinference-instrumentation-portkeyAutomatically instruments Portkey AI API calls…
permissive · top 15,000 on PyPI
openinference-instrumentation-openai-agentsAuto-instruments OpenAI Agents SDK to emit…
permissive · top 5,000 on PyPI
openinference-instrumentation-haystackAuto-instruments Haystack LLM pipelines and…
permissive · top 15,000 on PyPI
openinference-instrumentation-dspyAuto-instruments DSPy applications to generate…
permissive · top 15,000 on PyPI
openinference-instrumentation-anthropicAutomatically captures and exports traces from…
permissive · top 15,000 on PyPI
openinference-instrumentation-google-adkAuto-instruments Google ADK applications to…
permissive · top 15,000 on PyPI