Metadata-Version: 2.4
Name: openinference-instrumentation-autogen
Version: 0.1.15
Summary: Deprecated compatibility package for OpenInference AG2 instrumentation
Project-URL: Homepage, https://github.com/Arize-ai/openinference/tree/main/python/instrumentation/openinference-instrumentation-autogen
Author-email: OpenInference Authors <oss@arize.com>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: <3.15,>=3.10
Requires-Dist: openinference-instrumentation-ag2>=0.1.0
Requires-Dist: opentelemetry-instrumentation
Provides-Extra: instruments
Requires-Dist: autogen<1.0.0,>=0.5.0; extra == 'instruments'
Description-Content-Type: text/markdown

# OpenInference AutoGen

> [!WARNING]
> This package is deprecated. Install `openinference-instrumentation-ag2` and import
> `AG2Instrumentor` from `openinference.instrumentation.ag2` for new applications.

`AutogenInstrumentor` remains available for applications using the legacy `autogen`
distribution and delegates tracing to the AG2 instrumentor singleton. New applications can
migrate by changing the package and import:

```python
from openinference.instrumentation.ag2 import AG2Instrumentor

AG2Instrumentor().instrument()
```
