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.
Files changed (12) hide show
  1. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/PKG-INFO +3 -3
  2. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/pyproject.toml +2 -2
  3. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/__init__.py +1 -1
  4. openinference_instrumentation_beeai-0.1.6/src/openinference/instrumentation/beeai/version.py +1 -0
  5. openinference_instrumentation_beeai-0.1.5/src/openinference/instrumentation/beeai/version.py +0 -1
  6. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/.gitignore +0 -0
  7. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/README.md +0 -0
  8. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/middleware.py +0 -0
  9. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/build_trace_tree.py +0 -0
  10. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/create_span.py +0 -0
  11. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/get_serialized_object_safe.py +0 -0
  12. {openinference_instrumentation_beeai-0.1.5 → openinference_instrumentation_beeai-0.1.6}/src/openinference/instrumentation/beeai/utils/id_name_manager.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openinference-instrumentation-beeai
3
- Version: 0.1.5
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[duckduckgo,wikipedia]==0.1.18; extra == 'instruments'
24
+ Requires-Dist: beeai-framework>=0.1.10; extra == 'instruments'
25
25
  Provides-Extra: test
26
- Requires-Dist: beeai-framework[duckduckgo,wikipedia]==0.1.18; extra == 'test'
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[duckduckgo,wikipedia]==0.1.18",
36
+ "beeai-framework >= 0.1.10",
37
37
  ]
38
38
  test = [
39
- "beeai-framework[duckduckgo,wikipedia]==0.1.18",
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, < 0.1.19",)
34
+ _instruments = ("beeai-framework >= 0.1.10",)
35
35
  try:
36
36
  __version__ = version("beeai-framework")
37
37
  except PackageNotFoundError: