Metadata-Version: 2.4
Name: respan-instrumentation-marqo
Version: 0.1.0
Summary: Respan instrumentation plugin for Marqo
License: Apache 2.0
Author: Respan
Author-email: team@respan.ai
Requires-Python: >=3.11,<3.14
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: marqo (>=3.5.1,<4.0.0)
Requires-Dist: opentelemetry-semantic-conventions-ai (>=0.4.1)
Requires-Dist: respan-sdk (>=2.6.1)
Requires-Dist: respan-tracing (>=2.17.0,<3.0.0)
Requires-Dist: wrapt (>=1.16.0)
Description-Content-Type: text/markdown

# respan-instrumentation-marqo

Respan instrumentation for Marqo client, index, document, search, and embedding operations.

```bash
pip install respan-ai respan-instrumentation-marqo marqo
```

```python
import marqo
from respan import Respan
from respan_instrumentation_marqo import MarqoInstrumentor

respan = Respan(instrumentations=[MarqoInstrumentor()])
index = marqo.Client(url="http://localhost:8882").index("documents")
print(index.search("AI observability"))
respan.flush()
```

