@@ -78,6 +78,76 @@ s.general.sdk_configuration.server_url = "https://your-server"
78
78
79
79
<!-- End Dev Containers -->
80
80
81
+
82
+
83
+ ## SDK Example Usage
84
+ <!-- Start SDK Example Usage -->
85
+
86
+
87
+ ``` python
88
+ import unstructured_client
89
+ from unstructured_client.models import shared
90
+
91
+ s = unstructured_client.UnstructuredClient(
92
+ security = shared.Security(
93
+ api_key_auth = " YOUR_API_KEY" ,
94
+ ),
95
+ )
96
+
97
+ req = shared.PartitionParameters(
98
+ coordinates = False ,
99
+ encoding = ' utf-8' ,
100
+ files = shared.PartitionParametersFiles(
101
+ content = ' distinctio' .encode(),
102
+ files = ' quibusdam' ,
103
+ ),
104
+ gz_uncompressed_content_type = ' application/pdf' ,
105
+ hi_res_model_name = ' yolox' ,
106
+ include_page_breaks = False ,
107
+ ocr_languages = [
108
+ ' eng' ,
109
+ ],
110
+ output_format = ' application/json' ,
111
+ pdf_infer_table_structure = False ,
112
+ skip_infer_table_types = [
113
+ ' pdf' ,
114
+ ],
115
+ strategy = ' hi_res' ,
116
+ xml_keep_tags = False ,
117
+ )
118
+
119
+ res = s.general.partition(req)
120
+
121
+ if res.elements is not None :
122
+ # handle response
123
+ ```
124
+ <!-- End SDK Example Usage -->
125
+
126
+
127
+
128
+ <!-- Start SDK Available Operations -->
129
+ ## Available Resources and Operations
130
+
131
+
132
+ ### [ general] ( docs/sdks/general/README.md )
133
+
134
+ * [ partition] ( docs/sdks/general/README.md#partition ) - Pipeline 1
135
+ <!-- End SDK Available Operations -->
136
+
137
+
138
+
139
+ <!-- Start Pagination -->
140
+ # Pagination
141
+
142
+ Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
143
+ returned response object will have a ` Next ` method that can be called to pull down the next group of results. If the
144
+ return value of ` Next ` is ` None ` , then there are no more pages to be fetched.
145
+
146
+ Here's an example of one such pagination call:
147
+
148
+
149
+ <!-- End Pagination -->
150
+
81
151
<!-- Placeholder for Future Speakeasy SDK Sections -->
82
152
83
153
### Maturity
0 commit comments