openinference-instrumentation-beeai 0.1.5__tar.gz → 0.1.6__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.
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/PKG-INFO +3 -3
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/pyproject.toml +2 -2
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/__init__.py +1 -1
- openinference_instrumentation_beeai-0.1.6/src/openinference/instrumentation/beeai/version.py +1 -0
- openinference_instrumentation_beeai-0.1.5/src/openinference/instrumentation/beeai/version.py +0 -1
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/.gitignore +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/README.md +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/middleware.py +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/build_trace_tree.py +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/create_span.py +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/get_serialized_object_safe.py +0 -0
- {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/id_name_manager.py +0 -0
{openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: openinference-instrumentation-beeai
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: OpenInference BeeAI Instrumentation
|
|
5
5
|
Project-URL: Homepage, https://github.com/Arize-ai/openinference/tree/main/python/instrumentation/openinference-instrumentation-beeai
|
|
6
6
|
Author-email: Milan Gallas <gallas.milan@gmail.com>
|
|
@@ -21,9 +21,9 @@ Requires-Dist: opentelemetry-instrumentation>=0.52b1
|
|
|
21
21
|
Requires-Dist: opentelemetry-semantic-conventions>=0.52b1
|
|
22
22
|
Requires-Dist: wrapt>=1.17.2
|
|
23
23
|
Provides-Extra: instruments
|
|
24
|
-
Requires-Dist: beeai-framework
|
|
24
|
+
Requires-Dist: beeai-framework>=0.1.10; extra == 'instruments'
|
|
25
25
|
Provides-Extra: test
|
|
26
|
-
Requires-Dist: beeai-framework
|
|
26
|
+
Requires-Dist: beeai-framework>=0.1.19; extra == 'test'
|
|
27
27
|
Requires-Dist: opentelemetry-sdk; extra == 'test'
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
|
|
@@ -33,10 +33,10 @@ dependencies = [
|
|
|
33
33
|
|
|
34
34
|
[project.optional-dependencies]
|
|
35
35
|
instruments = [
|
|
36
|
-
"beeai-framework
|
|
36
|
+
"beeai-framework >= 0.1.10",
|
|
37
37
|
]
|
|
38
38
|
test = [
|
|
39
|
-
"beeai-framework
|
|
39
|
+
"beeai-framework >= 0.1.19",
|
|
40
40
|
"opentelemetry-sdk"
|
|
41
41
|
]
|
|
42
42
|
|
|
@@ -31,7 +31,7 @@ from .middleware import create_telemetry_middleware
|
|
|
31
31
|
|
|
32
32
|
logger = logging.getLogger(__name__)
|
|
33
33
|
|
|
34
|
-
_instruments = ("beeai-framework >= 0.1.10
|
|
34
|
+
_instruments = ("beeai-framework >= 0.1.10",)
|
|
35
35
|
try:
|
|
36
36
|
__version__ = version("beeai-framework")
|
|
37
37
|
except PackageNotFoundError:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.6"
|
openinference_instrumentation_beeai-0.1.5/src/openinference/instrumentation/beeai/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.5"
|
{openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/.gitignore
RENAMED
|
File without changes
|
{openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|