Skip to content

Commit 2b7cd4e

Browse files
committed
fix: reverted modifying generated file
1 parent 49e3c8e commit 2b7cd4e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/unstructured_client/models/shared/partition_parameters.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,6 @@ class PartitionParametersTypedDict(TypedDict):
124124
r"""This parameter determines if the PDF file should be split on the client side. It's an internal parameter for the Python client and is not sent to the backend."""
125125
split_pdf_page_range: NotRequired[List[int]]
126126
r"""When `split_pdf_page is set to `True`, this parameter selects a subset of the pdf to send to the API. The parameter is a list of 2 integers within the range [1, length_of_pdf]. A ValueError is thrown if the given range is invalid. It's an internal parameter for the Python client and is not sent to the backend."""
127-
split_pdf_cache_tmp_data: NotRequired[bool]
128-
r"""When `split_pdf_page` is set to `True`, this parameter determines if the temporary data used for splitting the PDF should be cached into disc - if enabled should save significant amount of RAM memory when processing big files. It's an internal parameter for the Python client and is not sent to the backend."""
129-
split_pdf_cache_tmp_data_dir: NotRequired[str]
130-
r"""When `split_pdf_page` is set to `True` and `split_pdf_cache_tmp_data` feature is used, this parameter specifies the directory where the temporary data used for splitting the PDF should be cached into disc. It's an internal parameter for the Python client and is not sent to the backend."""
131127
starting_page_number: NotRequired[Nullable[int]]
132128
r"""When PDF is split into pages before sending it into the API, providing this information will allow the page number to be assigned correctly. Introduced in 1.0.27."""
133129
strategy: NotRequired[Strategy]

0 commit comments

Comments
 (0)