opentelemetry-instrumentation-openai 0.21.0__tar.gz → 0.21.1__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-openai might be problematic. Click here for more details.
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/PKG-INFO +1 -1
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/utils.py +3 -1
- opentelemetry_instrumentation_openai-0.21.1/opentelemetry/instrumentation/openai/version.py +1 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/pyproject.toml +2 -2
- opentelemetry_instrumentation_openai-0.21.0/opentelemetry/instrumentation/openai/version.py +0 -1
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/README.md +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/chat_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/completion_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/config.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/v0/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/v1/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/v1/assistant_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py +0 -0
{opentelemetry_instrumentation_openai-0.21.0 → opentelemetry_instrumentation_openai-0.21.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentelemetry-instrumentation-openai
|
|
3
|
-
Version: 0.21.
|
|
3
|
+
Version: 0.21.1
|
|
4
4
|
Summary: OpenTelemetry OpenAI instrumentation
|
|
5
5
|
Home-page: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-openai
|
|
6
6
|
License: Apache-2.0
|
|
@@ -123,7 +123,9 @@ def dont_throw(func):
|
|
|
123
123
|
try:
|
|
124
124
|
return func(*args, **kwargs)
|
|
125
125
|
except Exception as e:
|
|
126
|
-
logger.
|
|
126
|
+
logger.debug(
|
|
127
|
+
"OpenLLMetry failed to trace in %s, error: %s", func.__name__, str(e)
|
|
128
|
+
)
|
|
127
129
|
if Config.exception_logger:
|
|
128
130
|
Config.exception_logger(e)
|
|
129
131
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.21.1"
|
|
@@ -8,7 +8,7 @@ show_missing = true
|
|
|
8
8
|
|
|
9
9
|
[tool.poetry]
|
|
10
10
|
name = "opentelemetry-instrumentation-openai"
|
|
11
|
-
version = "0.21.
|
|
11
|
+
version = "0.21.1"
|
|
12
12
|
description = "OpenTelemetry OpenAI instrumentation"
|
|
13
13
|
authors = [
|
|
14
14
|
"Gal Kleinman <gal@traceloop.com>",
|
|
@@ -31,7 +31,7 @@ opentelemetry-semantic-conventions-ai = "0.2.0"
|
|
|
31
31
|
tiktoken = ">=0.6.0, <1"
|
|
32
32
|
|
|
33
33
|
[tool.poetry.group.dev.dependencies]
|
|
34
|
-
autopep8 = "2.1.
|
|
34
|
+
autopep8 = "2.1.1"
|
|
35
35
|
flake8 = "7.0.0"
|
|
36
36
|
|
|
37
37
|
[tool.poetry.group.test.dependencies]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.21.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
|
|
File without changes
|
|
File without changes
|