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 806ccce commit adbdcd7Copy full SHA for adbdcd7
src/unstract/sdk/__init__.py
@@ -1,4 +1,5 @@
1
-__version__ = "0.55.0rc2"
+__version__ = "0.55.0rc3"
2
+
3
4
def get_sdk_version():
5
"""Returns the SDK version."""
src/unstract/sdk/adapters/x2text/helper.py
@@ -73,7 +73,7 @@ def process_document(
73
if not local_storage.exists(input_file_path):
74
fs.download(from_path=input_file_path, to_path=input_file_path)
75
with open(input_file_path, "rb") as input_f:
76
- mime_type = local_storage.mime_type(input_file=input_file_path)
+ mime_type = local_storage.mime_type(path=input_file_path)
77
files = {"file": (input_file_path, input_f, mime_type)}
78
response = UnstructuredHelper.make_request(
79
unstructured_adapter_config=unstructured_adapter_config,
0 commit comments