@@ -44,7 +44,7 @@ def predict_req_post(
4444
4545 :param input_source: Input object
4646 :param include_words: Include raw OCR words in the response
47- :param close_file: Whether to `close()` the file after product it.
47+ :param close_file: Whether to `close()` the file after parsing it.
4848 :param cropper: Including Mindee cropping results.
4949 :param full_text: Whether to include the full OCR text response in compatible APIs.
5050 :return: requests response
@@ -68,7 +68,7 @@ def predict_async_req_post(
6868
6969 :param input_source: Input object
7070 :param include_words: Include raw OCR words in the response
71- :param close_file: Whether to `close()` the file after product it.
71+ :param close_file: Whether to `close()` the file after parsing it.
7272 :param cropper: Including Mindee cropping results.
7373 :param full_text: Whether to include the full OCR text response in compatible APIs.
7474 :param workflow_id: Workflow ID.
@@ -184,7 +184,7 @@ def training_req_post(
184184
185185 :param input_source: Input object
186186 :return: requests response
187- :param close_file: Whether to `close()` the file after product it.
187+ :param close_file: Whether to `close()` the file after parsing it.
188188 """
189189 files = {"document" : input_source .read_contents (close_file )}
190190 params = {"training" : True , "with_candidates" : True }
@@ -206,7 +206,7 @@ def training_async_req_post(
206206
207207 :param input_source: Input object
208208 :return: requests response
209- :param close_file: Whether to `close()` the file after product it.
209+ :param close_file: Whether to `close()` the file after parsing it.
210210 """
211211 files = {"document" : input_source .read_contents (close_file )}
212212 params = {"training" : True , "async" : True }
0 commit comments