opentelemetry-instrumentation-openai 0.16.8__tar.gz → 0.16.9__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.16.8 → opentelemetry_instrumentation_openai-0.16.9}/PKG-INFO +1 -1
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py +1 -1
- opentelemetry_instrumentation_openai-0.16.9/opentelemetry/instrumentation/openai/version.py +1 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/pyproject.toml +1 -1
- opentelemetry_instrumentation_openai-0.16.8/opentelemetry/instrumentation/openai/version.py +0 -1
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/README.md +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/chat_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/completion_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/config.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/utils.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/v0/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/v1/__init__.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/v1/assistant_wrappers.py +0 -0
- {opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py +0 -0
{opentelemetry_instrumentation_openai-0.16.8 → opentelemetry_instrumentation_openai-0.16.9}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: opentelemetry-instrumentation-openai
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.9
|
|
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
|
|
@@ -114,7 +114,7 @@ async def aembeddings_wrapper(
|
|
|
114
114
|
try:
|
|
115
115
|
# record time for duration
|
|
116
116
|
start_time = time.time()
|
|
117
|
-
response = wrapped(*args, **kwargs)
|
|
117
|
+
response = await wrapped(*args, **kwargs)
|
|
118
118
|
end_time = time.time()
|
|
119
119
|
except Exception as e: # pylint: disable=broad-except
|
|
120
120
|
end_time = time.time()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.16.9"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.16.8"
|
|
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
|