Skip to content

Commit d4e5e5e

Browse files
committed
ci: regenerated with OpenAPI Doc 0.0.1, Speakeasy CLI 1.125.2
1 parent 7142e6a commit d4e5e5e

File tree

10 files changed

+26
-129
lines changed

10 files changed

+26
-129
lines changed

README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
This is a Python client for the [Unstructured API](https://unstructured-io.github.io/unstructured/api.html).
1818

19-
<!-- Start SDK Installation -->
19+
<!-- Start SDK Installation [installation] -->
2020
## SDK Installation
2121

2222
```bash
2323
pip install unstructured-client
2424
```
25-
<!-- End SDK Installation -->
25+
<!-- End SDK Installation [installation] -->
2626

2727
## Usage
2828
Only the `files` parameter is required. See the [general partition](docs/sdks/general/README.md) page for all available parameters. 
@@ -86,17 +86,13 @@ s = unstructured_client.UnstructuredClient(
8686
)
8787
```
8888

89-
<!-- Start Dev Containers -->
90-
91-
<!-- End Dev Containers -->
92-
9389
<!-- No SDK Example Usage -->
9490
<!-- No SDK Available Operations -->
9591
<!-- No Pagination -->
9692
<!-- No Error Handling -->
9793
<!-- No Server Selection -->
9894

99-
<!-- Start Custom HTTP Client -->
95+
<!-- Start Custom HTTP Client [http-client] -->
10096
## Custom HTTP Client
10197

10298
The Python SDK makes API calls using the (requests)[https://pypi.org/project/requests/] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
@@ -110,7 +106,7 @@ http_client = requests.Session()
110106
http_client.headers.update({'x-custom-header': 'someValue'})
111107
s = unstructured_client.UnstructuredClient(client: http_client)
112108
```
113-
<!-- End Custom HTTP Client -->
109+
<!-- End Custom HTTP Client [http-client] -->
114110

115111
<!-- No Retries -->
116112
<!-- No Authentication -->

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,14 @@ Based on:
284284
### Generated
285285
- [python v0.14.3] .
286286
### Releases
287-
- [PyPI v0.14.3] https://pypi.org/project/unstructured-client/0.14.3 - .
287+
- [PyPI v0.14.3] https://pypi.org/project/unstructured-client/0.14.3 - .
288+
289+
## 2023-12-06 00:19:29
290+
### Changes
291+
Based on:
292+
- OpenAPI Doc 0.0.1
293+
- Speakeasy CLI 1.125.2 (2.210.6) https://github.com/speakeasy-api/speakeasy
294+
### Generated
295+
- [python v0.14.4] .
296+
### Releases
297+
- [PyPI v0.14.4] https://pypi.org/project/unstructured-client/0.14.4 - .

USAGE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Start SDK Example Usage -->
1+
<!-- Start SDK Example Usage [usage] -->
22
```python
33
import unstructured_client
44
from unstructured_client.models import shared
@@ -41,4 +41,4 @@ if res.elements is not None:
4141
# handle response
4242
pass
4343
```
44-
<!-- End SDK Example Usage -->
44+
<!-- End SDK Example Usage [usage] -->

docs/models/utils/retryconfig.md

-24
This file was deleted.

docs/sdks/general/README.md

-73
This file was deleted.

docs/sdks/unstructuredclient/README.md

-9
This file was deleted.

files.gen

+1-4
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,12 @@ src/unstructured_client/models/__init__.py
1818
src/unstructured_client/models/errors/__init__.py
1919
src/unstructured_client/models/operations/__init__.py
2020
src/unstructured_client/models/shared/__init__.py
21-
USAGE.md
2221
docs/models/operations/partitionresponse.md
2322
docs/models/errors/httpvalidationerror.md
2423
docs/models/shared/loc.md
2524
docs/models/shared/validationerror.md
2625
docs/models/shared/files.md
2726
docs/models/shared/partitionparameters.md
2827
docs/models/shared/security.md
29-
docs/sdks/unstructuredclient/README.md
30-
docs/models/utils/retryconfig.md
31-
docs/sdks/general/README.md
28+
USAGE.md
3229
.gitattributes

gen.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ configVersion: 1.0.0
22
management:
33
docChecksum: bf57420eebd40f2b1d166092f01e3927
44
docVersion: 0.0.1
5-
speakeasyVersion: 1.121.3
6-
generationVersion: 2.195.2
5+
speakeasyVersion: 1.125.2
6+
generationVersion: 2.210.6
77
generation:
88
comments: {}
99
sdkClassName: unstructured_client
@@ -12,15 +12,15 @@ generation:
1212
optionalPropertyRendering: withExample
1313
features:
1414
python:
15-
core: 4.1.5
15+
core: 4.1.6
1616
examples: 2.81.3
1717
globalSecurity: 2.83.0
1818
globalServerURLs: 2.82.1
1919
nameOverrides: 2.81.1
2020
retries: 2.82.0
2121
serverIDs: 2.81.1
2222
python:
23-
version: 0.14.3
23+
version: 0.14.4
2424
author: Unstructured
2525
clientServerStatusCodesAsErrors: true
2626
description: Python Client SDK for Unstructured API

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="unstructured-client",
13-
version="0.14.3",
13+
version="0.14.4",
1414
author="Unstructured",
1515
description="Python Client SDK for Unstructured API",
1616
long_description=long_description,

src/unstructured_client/sdkconfiguration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ class SDKConfiguration:
2727
server: str = ''
2828
language: str = 'python'
2929
openapi_doc_version: str = '0.0.1'
30-
sdk_version: str = '0.14.3'
31-
gen_version: str = '2.195.2'
32-
user_agent: str = 'speakeasy-sdk/python 0.14.3 2.195.2 0.0.1 unstructured-client'
30+
sdk_version: str = '0.14.4'
31+
gen_version: str = '2.210.6'
32+
user_agent: str = 'speakeasy-sdk/python 0.14.4 2.210.6 0.0.1 unstructured-client'
3333
retry_config: RetryConfig = None
3434

3535
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

0 commit comments

Comments
 (0)