We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd75f3 commit d2c8267Copy full SHA for d2c8267
src/langtrace_python_sdk/instrumentation/weaviate/patch.py
@@ -47,9 +47,12 @@
47
48
def extract_inputs(args, kwargs):
49
extracted_params = {}
50
- kwargs_without_properties = {k: v for k, v in kwargs.items() if k != "properties"}
+ kwargs_without_properties = {
51
+ k: v for k, v in kwargs.items() if k not in ["properties", "fusion_type"]
52
+ }
53
extracted_params.update(extract_input_params(args, kwargs_without_properties))
-
54
+ if kwargs.get("fusion_type", None):
55
+ extracted_params["fusion_type"] = kwargs["fusion_type"].value
56
if kwargs.get("properties", None):
57
extracted_params["properties"] = []
58
for each_prop in kwargs.get("properties"):
src/langtrace_python_sdk/version.py
@@ -1 +1 @@
1
-__version__ = "2.3.4"
+__version__ = "2.3.5"
0 commit comments