Skip to content

Commit 3fc2021

Browse files
update speakeasy
1 parent 393e8b8 commit 3fc2021

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/unstructured_client/models/shared/partition_parameters.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from enum import Enum
66
from typing import List, Optional
77

8+
89
class ChunkingStrategy(str, Enum):
910
BASIC = 'basic'
1011
BY_PAGE = 'by_page'
@@ -19,11 +20,13 @@ class Files:
1920

2021

2122

23+
2224
class OutputFormat(str, Enum):
2325
r"""The format of the response. Supported formats are application/json and text/csv. Default: application/json."""
2426
APPLICATION_JSON = 'application/json'
2527
TEXT_CSV = 'text/csv'
2628

29+
2730
class Strategy(str, Enum):
2831
r"""The strategy to use for partitioning PDF/image. Options are fast, hi_res, auto. Default: auto"""
2932
FAST = 'fast'

src/unstructured_client/sdkconfiguration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class SDKConfiguration:
2929
server: Optional[str] = ''
3030
language: str = 'python'
3131
openapi_doc_version: str = '1.0.30'
32-
sdk_version: str = '0.26.0'
33-
gen_version: str = '2.329.0'
34-
user_agent: str = 'speakeasy-sdk/python 0.26.0 2.329.0 1.0.30 unstructured-client'
32+
sdk_version: str = '0.26.2'
33+
gen_version: str = '2.332.1'
34+
user_agent: str = 'speakeasy-sdk/python 0.26.2 2.332.1 1.0.30 unstructured-client'
3535
retry_config: Optional[RetryConfig] = None
3636

3737
def __post_init__(self):

0 commit comments

Comments
 (0)