You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is implementation of #17
It adds a boolean `split_pdf_page` to PartitionParameters, which if
True, causes the pdf to be split at client side to 1-page chunks, and
send to API. The returned elements are joined to a single result list.
If you are self hosting the API, or developing locally, you can change the server URL when setting up the client.
75
79
@@ -86,6 +90,24 @@ s = unstructured_client.UnstructuredClient(
86
90
api_key_auth=api_key,
87
91
)
88
92
```
93
+
94
+
### PartitionParameters
95
+
96
+
See the [general partition](/docs/models/shared/partitionparameters.md) page for all available parameters.
97
+
98
+
#### Splitting PDF by pages
99
+
100
+
In order to speed up processing of long PDF files, set `split_pdf_page=True`. It will cause the PDF
101
+
to be split page-by-page at client side, before sending to API, and combining individual responses
102
+
as single result. This will work only for PDF files, so don't set it for other filetypes.
103
+
104
+
Warning: this feature causes the `parent_id` metadata generation in elements to be disabled, as that
105
+
requires having context of multiple pages.
106
+
107
+
The amount of threads that will be used for sending individual pdf pages, is controlled by
108
+
`UNSTRUCTURED_CLIENT_SPLIT_CALL_THREADS` env var. By default it equals to 5.
109
+
It can't be more than 15, to avoid too high resource usage and costs.
110
+
89
111
<!-- No SDK Example Usage -->
90
112
<!-- No SDK Available Operations -->
91
113
<!-- No Pagination -->
@@ -119,9 +141,38 @@ This SDK is in beta, and there may be breaking changes between versions without
119
141
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
120
142
looking for the latest version.
121
143
144
+
### Installation Instructions for Local Development
145
+
146
+
The following instructions are intended to help you get up and running with `unstructured-python-client` locally if you are planning to contribute to the project.
147
+
148
+
* Using `pyenv` to manage virtualenv's is recommended but not necessary
149
+
* Mac install instructions. See [here](https://github.com/Unstructured-IO/community#mac--homebrew) for more detailed instructions.
150
+
*`brew install pyenv-virtualenv`
151
+
*`pyenv install 3.10`
152
+
* Linux instructions are available [here](https://github.com/Unstructured-IO/community#linux).
153
+
154
+
* Create a virtualenv to work in and activate it, e.g. for one named `unstructured-python-client`:
While we value open-source contributions to this SDK, this library is generated programmatically.
163
+
While we value open-source contributions to this SDK, this library is generated programmatically by Speakeasy. In order to start working with this repo, you need to:
3. Run `make client-generate`. This allows to iterate development with python client.
167
+
168
+
There are two important files used by `make client-generate`:
169
+
1.`openapi.json` which is actually not stored here, [but fetched from unstructured-api](https://raw.githubusercontent.com/Unstructured-IO/unstructured-api/main/openapi.json), represents the API that is supported on backend.
170
+
2.`overlay_client.yaml` is a handcrafted diff that when applied over above, produces `openapi_client.json`
171
+
which is used to generate SDK.
172
+
173
+
Once PR with changes is merged, Github CI will autogenerate the Speakeasy client in a new PR, using
174
+
the `openapi.json` and `overlay_client.yaml` You will have to manually bring back the human created lines in it.
175
+
125
176
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
126
177
127
178
### SDK Created by [Speakeasy](https://www.speakeasyapi.dev/docs/sdk-design/python/methodology-python)
0 commit comments