openinference-instrumentation-beeai 0.1.14__tar.gz → 0.1.15__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 (22) hide show
  1. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/PKG-INFO +6 -1
  2. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/pyproject.toml +6 -1
  3. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/chat.py +21 -2
  4. openinference_instrumentation_beeai-0.1.15/src/openinference/instrumentation/beeai/version.py +1 -0
  5. openinference_instrumentation_beeai-0.1.14/src/openinference/instrumentation/beeai/version.py +0 -1
  6. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/.gitignore +0 -0
  7. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/README.md +0 -0
  8. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/__init__.py +0 -0
  9. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/_span.py +0 -0
  10. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/_utils.py +0 -0
  11. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/__init__.py +0 -0
  12. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/agents/__init__.py +0 -0
  13. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/agents/base.py +0 -0
  14. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/agents/react.py +0 -0
  15. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/agents/requirement_agent.py +0 -0
  16. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/agents/tool_calling.py +0 -0
  17. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/base.py +0 -0
  18. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/embedding.py +0 -0
  19. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/locator.py +0 -0
  20. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/requirement.py +0 -0
  21. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/tool.py +0 -0
  22. {openinference_instrumentation_beeai-0.1.14 → openinference_instrumentation_beeai-0.1.15}/src/openinference/instrumentation/beeai/processors/workflow.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openinference-instrumentation-beeai
3
- Version: 0.1.14
3
+ Version: 0.1.15
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: IBM Corp.
@@ -27,8 +27,13 @@ Provides-Extra: instruments
27
27
  Requires-Dist: beeai-framework>=0.1.51; extra == 'instruments'
28
28
  Provides-Extra: test
29
29
  Requires-Dist: beeai-framework>=0.1.51; extra == 'test'
30
+ Requires-Dist: beeai-framework[duckduckgo]; extra == 'test'
30
31
  Requires-Dist: opentelemetry-exporter-otlp; extra == 'test'
31
32
  Requires-Dist: opentelemetry-sdk; extra == 'test'
33
+ Requires-Dist: pytest; extra == 'test'
34
+ Requires-Dist: pytest-asyncio; extra == 'test'
35
+ Requires-Dist: pytest-recording; extra == 'test'
36
+ Requires-Dist: vcrpy<8.0.0,>=5.0.0; extra == 'test'
32
37
  Description-Content-Type: text/markdown
33
38
 
34
39
  # OpenInference Instrumentation for BeeAI
@@ -39,7 +39,12 @@ instruments = [
39
39
  test = [
40
40
  "beeai-framework >= 0.1.51",
41
41
  "opentelemetry-sdk",
42
- "opentelemetry-exporter-otlp"
42
+ "opentelemetry-exporter-otlp",
43
+ "pytest-recording",
44
+ "vcrpy>=5.0.0,<8.0.0",
45
+ "beeai-framework[duckduckgo]",
46
+ "pytest-asyncio",
47
+ "pytest",
43
48
  ]
44
49
 
45
50
  [project.entry-points.opentelemetry_instrumentor]
@@ -1,5 +1,5 @@
1
1
  from datetime import datetime
2
- from typing import Any, ClassVar
2
+ from typing import Any, ClassVar, Dict, Generator, Tuple
3
3
 
4
4
  from beeai_framework.backend import (
5
5
  AnyMessage,
@@ -19,6 +19,7 @@ from beeai_framework.tools import AnyTool
19
19
  from beeai_framework.utils.lists import remove_falsy
20
20
  from typing_extensions import override
21
21
 
22
+ from openinference.instrumentation import safe_json_dumps
22
23
  from openinference.instrumentation.beeai._utils import (
23
24
  _unpack_object,
24
25
  safe_dump_model_schema,
@@ -36,6 +37,24 @@ from openinference.semconv.trace import (
36
37
  )
37
38
 
38
39
 
40
+ def get_tool_parameters(tool: AnyTool) -> Dict[str, Any]:
41
+ tool_dict = tool.to_json_safe()
42
+ if "input_schema" in tool_dict:
43
+ input_schema = tool_dict.pop("input_schema")
44
+ tool_dict["parameters"] = input_schema or {}
45
+ tool_dict["parameters"]["type"] = "object"
46
+ return tool_dict
47
+
48
+
49
+ def get_tools(tools: list[AnyTool]) -> Generator[Tuple[str, str], None, None]:
50
+ for index, tool in enumerate(tools):
51
+ function = {"type": "function", "function": get_tool_parameters(tool)}
52
+ yield (
53
+ f"{SpanAttributes.LLM_TOOLS}.{index}.{ToolAttributes.TOOL_JSON_SCHEMA}",
54
+ safe_json_dumps(function),
55
+ )
56
+
57
+
39
58
  class ChatModelProcessor(Processor):
40
59
  kind: ClassVar[OpenInferenceSpanKindValues] = OpenInferenceSpanKindValues.LLM
41
60
 
@@ -80,7 +99,7 @@ class ChatModelProcessor(Processor):
80
99
  )
81
100
  self.span.set_attributes(
82
101
  {
83
- SpanAttributes.LLM_TOOLS: [t.name for t in (event.input.tools or [])],
102
+ **dict(get_tools(event.input.tools or [])),
84
103
  SpanAttributes.LLM_INVOCATION_PARAMETERS: stringify(
85
104
  meta.creator.parameters.model_dump(
86
105
  exclude_none=True, exclude_unset=True