blaxel 0.2.0rc6__py3-none-any.whl → 0.2.0rc7__py3-none-any.whl
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.
- blaxel/telemetry/instrumentation/blaxel_core.py +3 -2
- blaxel/telemetry/instrumentation/blaxel_langgraph.py +1 -1
- blaxel/telemetry/instrumentation/blaxel_langgraph_gemini.py +1 -1
- blaxel/telemetry/instrumentation/blaxel_llamaindex.py +1 -1
- blaxel/telemetry/instrumentation/map.py +8 -8
- {blaxel-0.2.0rc6.dist-info → blaxel-0.2.0rc7.dist-info}/METADATA +1 -1
- {blaxel-0.2.0rc6.dist-info → blaxel-0.2.0rc7.dist-info}/RECORD +9 -9
- {blaxel-0.2.0rc6.dist-info → blaxel-0.2.0rc7.dist-info}/WHEEL +0 -0
- {blaxel-0.2.0rc6.dist-info → blaxel-0.2.0rc7.dist-info}/licenses/LICENSE +0 -0
@@ -10,9 +10,10 @@ from blaxel.telemetry.span import SpanManager
|
|
10
10
|
|
11
11
|
logger = logging.getLogger(__name__)
|
12
12
|
|
13
|
+
|
13
14
|
class BlaxelCoreInstrumentor(BaseInstrumentor):
|
14
15
|
def instrumentation_dependencies(self):
|
15
|
-
return [
|
16
|
+
return []
|
16
17
|
|
17
18
|
def _instrument(self, **kwargs):
|
18
19
|
tracer_provider = kwargs.get("tracer_provider")
|
@@ -121,4 +122,4 @@ class BlaxelCoreInstrumentor(BaseInstrumentor):
|
|
121
122
|
Tool.sync_coroutine = traced_sync_coroutine
|
122
123
|
return Tool
|
123
124
|
|
124
|
-
blaxel.core.tools.convert_mcp_tool_to_blaxel_tool = traced_convert_mcp_tool_to_blaxel_tool
|
125
|
+
blaxel.core.tools.convert_mcp_tool_to_blaxel_tool = traced_convert_mcp_tool_to_blaxel_tool
|
@@ -11,7 +11,7 @@ logger = logging.getLogger(__name__)
|
|
11
11
|
|
12
12
|
class BlaxelLanggraphInstrumentor(BaseInstrumentor):
|
13
13
|
def instrumentation_dependencies(self):
|
14
|
-
return ["
|
14
|
+
return ["langgraph"]
|
15
15
|
|
16
16
|
def _instrument(self, **kwargs):
|
17
17
|
tracer_provider = kwargs.get("tracer_provider")
|
@@ -316,7 +316,7 @@ class BlaxelLanggraphGeminiInstrumentor(BaseInstrumentor):
|
|
316
316
|
Config.exception_logger = exception_logger
|
317
317
|
|
318
318
|
def instrumentation_dependencies(self) -> Collection[str]:
|
319
|
-
return ["
|
319
|
+
return ["langgraph"]
|
320
320
|
|
321
321
|
def _instrument(self, **kwargs):
|
322
322
|
tracer_provider = kwargs.get("tracer_provider")
|
@@ -30,7 +30,7 @@ TO_INSTRUMENT = [
|
|
30
30
|
|
31
31
|
class BlaxelLlamaIndexInstrumentor(BaseInstrumentor):
|
32
32
|
def instrumentation_dependencies(self):
|
33
|
-
return ["
|
33
|
+
return ["llama_index"]
|
34
34
|
|
35
35
|
def _instrument(self, **kwargs):
|
36
36
|
tracer_provider = kwargs.get("tracer_provider")
|
@@ -35,28 +35,28 @@ MAPPINGS: Dict[str, InstrumentationMapping] = {
|
|
35
35
|
required_packages=["google-generativeai"],
|
36
36
|
ignore_if_packages=[],
|
37
37
|
),
|
38
|
-
"
|
38
|
+
"blaxel_core": InstrumentationMapping(
|
39
39
|
module_path="blaxel.telemetry.instrumentation.blaxel_core",
|
40
40
|
class_name="BlaxelCoreInstrumentor",
|
41
|
-
required_packages=[
|
41
|
+
required_packages=[],
|
42
42
|
ignore_if_packages=[],
|
43
43
|
),
|
44
|
-
"
|
44
|
+
"blaxel_langgraph": InstrumentationMapping(
|
45
45
|
module_path="blaxel.telemetry.instrumentation.blaxel_langgraph",
|
46
46
|
class_name="BlaxelLanggraphInstrumentor",
|
47
|
-
required_packages=["
|
47
|
+
required_packages=["langgraph"],
|
48
48
|
ignore_if_packages=[],
|
49
49
|
),
|
50
|
-
"
|
50
|
+
"blaxel_langgraph_gemini": InstrumentationMapping(
|
51
51
|
module_path="blaxel.telemetry.instrumentation.blaxel_langgraph_gemini",
|
52
52
|
class_name="BlaxelLanggraphGeminiInstrumentor",
|
53
|
-
required_packages=["
|
53
|
+
required_packages=["langgraph"],
|
54
54
|
ignore_if_packages=[],
|
55
55
|
),
|
56
|
-
"
|
56
|
+
"blaxel_llamaindex": InstrumentationMapping(
|
57
57
|
module_path="blaxel.telemetry.instrumentation.blaxel_llamaindex",
|
58
58
|
class_name="BlaxelLlamaIndexInstrumentor",
|
59
|
-
required_packages=["
|
59
|
+
required_packages=["llama_index"],
|
60
60
|
ignore_if_packages=[],
|
61
61
|
),
|
62
62
|
}
|
@@ -394,15 +394,15 @@ blaxel/telemetry/exporters.py,sha256=EoX3uaBVku1Rg49pSNXKFyHhgY5OV3Ih6UlqgjF5epw
|
|
394
394
|
blaxel/telemetry/manager.py,sha256=3yYBxxqQKl1rCKrn0GVz9jR5jouC1nsElbAaH8tTtgA,9075
|
395
395
|
blaxel/telemetry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
396
396
|
blaxel/telemetry/span.py,sha256=b8lpWe5nqek4w9YrBLJCIYz4Z3n9Z_49H_AkqpAGOiM,3660
|
397
|
-
blaxel/telemetry/instrumentation/blaxel_core.py,sha256=
|
398
|
-
blaxel/telemetry/instrumentation/blaxel_langgraph.py,sha256=
|
399
|
-
blaxel/telemetry/instrumentation/blaxel_langgraph_gemini.py,sha256=
|
400
|
-
blaxel/telemetry/instrumentation/blaxel_llamaindex.py,sha256=
|
401
|
-
blaxel/telemetry/instrumentation/map.py,sha256=
|
397
|
+
blaxel/telemetry/instrumentation/blaxel_core.py,sha256=7PNseKq7bOQ4Z6a8jW7AGm0ojcdcusjoiH_5iQsR5ic,4881
|
398
|
+
blaxel/telemetry/instrumentation/blaxel_langgraph.py,sha256=sBxt8kzRjsFepm86vaCBbGvpYI4mWPK_PB3wiLxSuOk,4235
|
399
|
+
blaxel/telemetry/instrumentation/blaxel_langgraph_gemini.py,sha256=hQbOaaMsHte_Igq_vhPgNXYd40IwuqPB0TUP-5VAtME,11953
|
400
|
+
blaxel/telemetry/instrumentation/blaxel_llamaindex.py,sha256=HA4YUXrRYvG5U1J8MAJnymmmj4ZCDydv-pXXhrftHOA,3101
|
401
|
+
blaxel/telemetry/instrumentation/map.py,sha256=PCzZJj39yiYVYJrxLBNP-NW-tjjYyTijwEDeI9njuDY,2174
|
402
402
|
blaxel/telemetry/instrumentation/utils.py,sha256=KInMYZH-mu9_wvetmf0EmgrfN3Sw8IWk2Y95v2u90_U,1901
|
403
403
|
blaxel/telemetry/log/log.py,sha256=RvQByRjZMoP_dRaAZu8oK6DTegsHs-xV4W-UIqis6CA,2461
|
404
404
|
blaxel/telemetry/log/logger.py,sha256=NPAS3g82ryROjvc_DEZaTIfrcehoLEZoP-JkLxADxc0,4113
|
405
|
-
blaxel-0.2.
|
406
|
-
blaxel-0.2.
|
407
|
-
blaxel-0.2.
|
408
|
-
blaxel-0.2.
|
405
|
+
blaxel-0.2.0rc7.dist-info/METADATA,sha256=kaL-NN6NG1sQz6DrmEPhFoXo5Z5Sb70yrPOQ7R7rgNk,9878
|
406
|
+
blaxel-0.2.0rc7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
407
|
+
blaxel-0.2.0rc7.dist-info/licenses/LICENSE,sha256=p5PNQvpvyDT_0aYBDgmV1fFI_vAD2aSV0wWG7VTgRis,1069
|
408
|
+
blaxel-0.2.0rc7.dist-info/RECORD,,
|
File without changes
|
File without changes
|