diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 3e7779f4..04b5d407 100755 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -3,10 +3,10 @@ id: 8b5fa338-9106-4734-abf0-e30d67044a90 management: docChecksum: 17bd23e4247d7b65a92813afd1252693 docVersion: 1.0.44 - speakeasyVersion: 1.385.0 - generationVersion: 2.407.2 - releaseVersion: 0.25.6 - configChecksum: 644542f7a4c35c96247736a612b132b3 + speakeasyVersion: 1.389.0 + generationVersion: 2.409.0 + releaseVersion: 0.25.7 + configChecksum: ac7a91ff3ca76edd4caa491893485665 repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git repoSubDirectory: . installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index 5f50a497..ea3a3006 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -1,8 +1,8 @@ -speakeasyVersion: 1.385.0 +speakeasyVersion: 1.389.0 sources: my-source: sourceNamespace: my-source - sourceRevisionDigest: sha256:a05642179a4388c25aa5ca3d761c2456378bff1ad0b53401e4544a5f6a666a8c + sourceRevisionDigest: sha256:feba65fd909aa4cc349aaaa38c23be272ab979a681780b115906994a933c6b57 sourceBlobDigest: sha256:82a41fda0e36227f53d789a4dafb7cf900a19bd0588af24419a7adc780a2653a tags: - latest @@ -11,7 +11,7 @@ targets: unstructured-python: source: my-source sourceNamespace: my-source - sourceRevisionDigest: sha256:a05642179a4388c25aa5ca3d761c2456378bff1ad0b53401e4544a5f6a666a8c + sourceRevisionDigest: sha256:feba65fd909aa4cc349aaaa38c23be272ab979a681780b115906994a933c6b57 sourceBlobDigest: sha256:82a41fda0e36227f53d789a4dafb7cf900a19bd0588af24419a7adc780a2653a outLocation: /github/workspace/repo workflow: diff --git a/RELEASES.md b/RELEASES.md index 2d421859..8badeede 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -655,3 +655,14 @@ Based on: - [python v0.25.6] . ### Releases - [PyPI v0.25.6] https://pypi.org/project/unstructured-client/0.25.6 - . + + +## 2024-09-03 20:09:49 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.389.0 (2.409.0) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v0.25.7] . +### Releases +- [PyPI v0.25.7] https://pypi.org/project/unstructured-client/0.25.7 - . \ No newline at end of file diff --git a/docs/models/shared/partitionparameters.md b/docs/models/shared/partitionparameters.md index 1f8369a7..1c1ac500 100644 --- a/docs/models/shared/partitionparameters.md +++ b/docs/models/shared/partitionparameters.md @@ -5,7 +5,7 @@ | Field | Type | Required | Description | Example | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `files` | [shared.Files](../../models/shared/files.md) | :heavy_check_mark: | The file to extract | | +| `files` | [shared.Files](../../models/shared/files.md) | :heavy_check_mark: | The file to extract | {
"summary": "File to be partitioned",
"externalValue": "https://github.com/Unstructured-IO/unstructured/blob/98d3541909f64290b5efb65a226fc3ee8a7cc5ee/example-docs/layout-parser-paper.pdf"
} | | `chunking_strategy` | [Optional[shared.ChunkingStrategy]](../../models/shared/chunkingstrategy.md) | :heavy_minus_sign: | Use one of the supported strategies to chunk the returned elements after partitioning. When 'chunking_strategy' is not specified, no chunking is performed and any other chunking parameters provided are ignored. Supported strategies: 'basic', 'by_page', 'by_similarity', or 'by_title' | by_title | | `combine_under_n_chars` | *Optional[int]* | :heavy_minus_sign: | If chunking strategy is set, combine elements until a section reaches a length of n chars. Default: 500 | | | `content_type` | *Optional[str]* | :heavy_minus_sign: | A hint about the content type to use (such as text/markdown), when there are problems processing a specific file. This value is a MIME type in the format type/subtype. | | diff --git a/setup.py b/setup.py index c15efd80..a53fc0d8 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setuptools.setup( name='unstructured-client', - version='0.25.6', + version='0.25.7', author='Unstructured', description='Python Client SDK for Unstructured API', license = 'MIT', diff --git a/src/unstructured_client/sdkconfiguration.py b/src/unstructured_client/sdkconfiguration.py index 4741ea9c..3853235a 100644 --- a/src/unstructured_client/sdkconfiguration.py +++ b/src/unstructured_client/sdkconfiguration.py @@ -32,9 +32,9 @@ class SDKConfiguration: server: Optional[str] = '' language: str = 'python' openapi_doc_version: str = '1.0.44' - sdk_version: str = '0.25.6' - gen_version: str = '2.407.2' - user_agent: str = 'speakeasy-sdk/python 0.25.6 2.407.2 1.0.44 unstructured-client' + sdk_version: str = '0.25.7' + gen_version: str = '2.409.0' + user_agent: str = 'speakeasy-sdk/python 0.25.7 2.409.0 1.0.44 unstructured-client' retry_config: Optional[RetryConfig] = None def __post_init__(self):