Metadata-Version: 2.4
Name: opentelemetry-instrumentation-writer
Version: 0.53.3
Summary: OpenTelemetry Writer instrumentation
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-writer
Author-email: Yan Tolstoy <yan.talstoi@writer.com>, "Writer, Inc." <dev-feedback@writer.com>
License-Expression: Apache-2.0
Requires-Python: <4,>=3.10
Requires-Dist: opentelemetry-api<2,>=1.38.0
Requires-Dist: opentelemetry-instrumentation>=0.59b0
Requires-Dist: opentelemetry-semantic-conventions-ai>=0.4.11
Requires-Dist: opentelemetry-semantic-conventions>=0.59b0
Provides-Extra: instruments
Requires-Dist: writer; extra == 'instruments'
Description-Content-Type: text/markdown

# OpenTelemetry Writer Instrumentation

<a href="https://pypi.org/project/opentelemetry-instrumentation-writer/">
    <img alt="PyPI version" src="https://badge.fury.io/py/opentelemetry-instrumentation-writer.svg">
</a>

This library allows tracing calls to any of Writer's endpoints sent with the official [Writer Python Library](https://github.com/writer/writer-python).

## Installation

```bash
pip install opentelemetry-instrumentation-writer
```

## Example usage

```python
from opentelemetry.instrumentation.writer import WriterInstrumentor

WriterInstrumentor().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`.

```bash
TRACELOOP_TRACE_CONTENT=false
```
