opentelemetry-instrumentation-vertexai 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-vertexai might be problematic. Click here for more details.
- {opentelemetry_instrumentation_vertexai-0.13.0 → opentelemetry_instrumentation_vertexai-0.13.2}/PKG-INFO +11 -1
- {opentelemetry_instrumentation_vertexai-0.13.0 → opentelemetry_instrumentation_vertexai-0.13.2}/README.md +8 -0
- opentelemetry_instrumentation_vertexai-0.13.2/opentelemetry/instrumentation/vertexai/version.py +1 -0
- {opentelemetry_instrumentation_vertexai-0.13.0 → opentelemetry_instrumentation_vertexai-0.13.2}/pyproject.toml +4 -3
- opentelemetry_instrumentation_vertexai-0.13.0/opentelemetry/instrumentation/vertexai/version.py +0 -1
- {opentelemetry_instrumentation_vertexai-0.13.0 → opentelemetry_instrumentation_vertexai-0.13.2}/opentelemetry/instrumentation/vertexai/__init__.py +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentelemetry-instrumentation-vertexai
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.2
|
|
4
4
|
Summary: OpenTelemetry Vertex AI instrumentation
|
|
5
|
+
Home-page: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-vertexai
|
|
5
6
|
License: Apache-2.0
|
|
6
7
|
Author: Gal Kleinman
|
|
7
8
|
Author-email: gal@traceloop.com
|
|
@@ -15,6 +16,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
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-vertexai
|
|
18
20
|
Description-Content-Type: text/markdown
|
|
19
21
|
|
|
20
22
|
# OpenTelemetry VertexAI Instrumentation
|
|
@@ -31,6 +33,14 @@ This library allows tracing VertexAI prompts and completions sent with the offic
|
|
|
31
33
|
pip install opentelemetry-instrumentation-vertexai
|
|
32
34
|
```
|
|
33
35
|
|
|
36
|
+
## Example usage
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from opentelemetry.instrumentation.vertexai import VertexAIInstrumentor
|
|
40
|
+
|
|
41
|
+
VertexAIInstrumentor().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 VertexAI prompts and completions sent with the offic
|
|
|
12
12
|
pip install opentelemetry-instrumentation-vertexai
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
## Example usage
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
from opentelemetry.instrumentation.vertexai import VertexAIInstrumentor
|
|
19
|
+
|
|
20
|
+
VertexAIInstrumentor().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_vertexai-0.13.2/opentelemetry/instrumentation/vertexai/version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.13.2"
|
|
@@ -8,7 +8,7 @@ show_missing = true
|
|
|
8
8
|
|
|
9
9
|
[tool.poetry]
|
|
10
10
|
name = "opentelemetry-instrumentation-vertexai"
|
|
11
|
-
version = "0.13.
|
|
11
|
+
version = "0.13.2"
|
|
12
12
|
description = "OpenTelemetry Vertex AI instrumentation"
|
|
13
13
|
authors = [
|
|
14
14
|
"Gal Kleinman <gal@traceloop.com>",
|
|
@@ -16,6 +16,7 @@ authors = [
|
|
|
16
16
|
"Tomer Friedman <tomer@traceloop.com>",
|
|
17
17
|
"Swaroop <maddisaiswaroop@gmail.com>"
|
|
18
18
|
]
|
|
19
|
+
repository = "https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-vertexai"
|
|
19
20
|
license = "Apache-2.0"
|
|
20
21
|
readme = "README.md"
|
|
21
22
|
|
|
@@ -31,11 +32,11 @@ opentelemetry-semantic-conventions-ai = "^0.0.20"
|
|
|
31
32
|
[tool.poetry.group.dev.dependencies]
|
|
32
33
|
autopep8 = "2.0.4"
|
|
33
34
|
flake8 = "7.0.0"
|
|
34
|
-
pytest = "8.0
|
|
35
|
+
pytest = "8.1.0"
|
|
35
36
|
pytest-sugar = "1.0.0"
|
|
36
37
|
|
|
37
38
|
[tool.poetry.group.test.dependencies]
|
|
38
|
-
pytest = "8.0
|
|
39
|
+
pytest = "8.1.0"
|
|
39
40
|
pytest-sugar = "1.0.0"
|
|
40
41
|
vcrpy = "^6.0.1"
|
|
41
42
|
pytest-recording = "^0.13.1"
|
opentelemetry_instrumentation_vertexai-0.13.0/opentelemetry/instrumentation/vertexai/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.13.0"
|