opentelemetry-instrumentation-llamaindex 0.13.0__tar.gz → 0.13.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of opentelemetry-instrumentation-llamaindex might be problematic. Click here for more details.
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/PKG-INFO +11 -1
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/README.md +8 -0
- opentelemetry_instrumentation_llamaindex-0.13.2/opentelemetry/instrumentation/llamaindex/version.py +1 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/pyproject.toml +5 -4
- opentelemetry_instrumentation_llamaindex-0.13.0/opentelemetry/instrumentation/llamaindex/version.py +0 -1
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/__init__.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/base_agent_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/base_embedding_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/base_retriever_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/base_synthesizer_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/base_tool_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/custom_llm_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/query_pipeline_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/retriever_query_engine_instrumentor.py +0 -0
- {opentelemetry_instrumentation_llamaindex-0.13.0 → opentelemetry_instrumentation_llamaindex-0.13.2}/opentelemetry/instrumentation/llamaindex/utils.py +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentelemetry-instrumentation-llamaindex
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.2
|
|
4
4
|
Summary: OpenTelemetry LlamaIndex instrumentation
|
|
5
|
+
Home-page: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-llamaindex
|
|
5
6
|
License: Apache-2.0
|
|
6
7
|
Author: Gal Kleinman
|
|
7
8
|
Author-email: gal@traceloop.com
|
|
@@ -15,6 +16,7 @@ Requires-Dist: inflection (>=0.5.1,<0.6.0)
|
|
|
15
16
|
Requires-Dist: opentelemetry-api (>=1.23.0,<2.0.0)
|
|
16
17
|
Requires-Dist: opentelemetry-instrumentation (==0.44b0)
|
|
17
18
|
Requires-Dist: opentelemetry-semantic-conventions-ai (>=0.0.20,<0.0.21)
|
|
19
|
+
Project-URL: Repository, https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-llamaindex
|
|
18
20
|
Description-Content-Type: text/markdown
|
|
19
21
|
|
|
20
22
|
# OpenTelemetry LlamaIndex Instrumentation
|
|
@@ -31,6 +33,14 @@ This library allows tracing complete LLM applications built with [LlamaIndex](ht
|
|
|
31
33
|
pip install opentelemetry-instrumentation-llamaindex
|
|
32
34
|
```
|
|
33
35
|
|
|
36
|
+
## Example usage
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from opentelemetry.instrumentation.llamaindex import LlamaIndexInstrumentor
|
|
40
|
+
|
|
41
|
+
LlamaIndexInstrumentor().instrument()
|
|
42
|
+
```
|
|
43
|
+
|
|
34
44
|
## Privacy
|
|
35
45
|
|
|
36
46
|
**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.
|
|
@@ -12,6 +12,14 @@ This library allows tracing complete LLM applications built with [LlamaIndex](ht
|
|
|
12
12
|
pip install opentelemetry-instrumentation-llamaindex
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
## Example usage
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
from opentelemetry.instrumentation.llamaindex import LlamaIndexInstrumentor
|
|
19
|
+
|
|
20
|
+
LlamaIndexInstrumentor().instrument()
|
|
21
|
+
```
|
|
22
|
+
|
|
15
23
|
## Privacy
|
|
16
24
|
|
|
17
25
|
**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.
|
opentelemetry_instrumentation_llamaindex-0.13.2/opentelemetry/instrumentation/llamaindex/version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.13.2"
|
|
@@ -8,13 +8,14 @@ show_missing = true
|
|
|
8
8
|
|
|
9
9
|
[tool.poetry]
|
|
10
10
|
name = "opentelemetry-instrumentation-llamaindex"
|
|
11
|
-
version = "0.13.
|
|
11
|
+
version = "0.13.2"
|
|
12
12
|
description = "OpenTelemetry LlamaIndex instrumentation"
|
|
13
13
|
authors = [
|
|
14
14
|
"Gal Kleinman <gal@traceloop.com>",
|
|
15
15
|
"Nir Gazit <nir@traceloop.com>",
|
|
16
16
|
"Tomer Friedman <tomer@traceloop.com>"
|
|
17
17
|
]
|
|
18
|
+
repository = "https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-llamaindex"
|
|
18
19
|
license = "Apache-2.0"
|
|
19
20
|
readme = "README.md"
|
|
20
21
|
|
|
@@ -41,9 +42,9 @@ openai = "^1.12.0"
|
|
|
41
42
|
opentelemetry-sdk = "^1.23.0"
|
|
42
43
|
llama-index = "^0.10.10"
|
|
43
44
|
llama-index-postprocessor-cohere-rerank = "^0.1.2"
|
|
44
|
-
opentelemetry-instrumentation-openai = "^0.13.
|
|
45
|
-
opentelemetry-instrumentation-cohere = "^0.13.
|
|
46
|
-
opentelemetry-instrumentation-chromadb = "^0.13.
|
|
45
|
+
opentelemetry-instrumentation-openai = "^0.13.2"
|
|
46
|
+
opentelemetry-instrumentation-cohere = "^0.13.2"
|
|
47
|
+
opentelemetry-instrumentation-chromadb = "^0.13.2"
|
|
47
48
|
sqlalchemy = "^2.0.27"
|
|
48
49
|
llama-index-agent-openai = "^0.1.5"
|
|
49
50
|
|
opentelemetry_instrumentation_llamaindex-0.13.0/opentelemetry/instrumentation/llamaindex/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.13.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|