We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f374624 commit 5b8bf47Copy full SHA for 5b8bf47
1 file changed
unstructured/staging/weaviate.py
@@ -91,6 +91,8 @@ def _annotation_to_weaviate_data_type(annotation: str):
91
return ["text"]
92
elif "int" in annotation:
93
return ["int"]
94
+ elif "float" in annotation:
95
+ return ["number"]
96
elif "date" in annotation:
97
return ["date"]
98
else:
0 commit comments