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
The `maintainFormat` option tries to return the markdown in a consistent format by passing the output of a prior page in as additional context for the next page. This requires the requests to run synchronously, so it's a lot slower. But valuable if your documents have a lot of tabular data, or frequently have tables that cross pages.
136
143
137
144
```
@@ -386,7 +393,6 @@ print(result)
386
393
387
394
### Parameters
388
395
389
-
```python
390
396
async def zerox(
391
397
cleanup: bool = True,
392
398
concurrency: int = 10,
@@ -402,6 +408,12 @@ async def zerox(
402
408
...
403
409
```
404
410
411
+
# For GPT-5 models, you can control the reasoning effort:
# result = await zerox(file_path=..., model="gpt-5", reasoning_effort="medium")
415
+
416
+
405
417
Parameters
406
418
407
419
- **cleanup** (bool, optional):
@@ -423,6 +435,8 @@ Parameters
423
435
The system prompt to use for the model, this overrides the default system prompt of Zerox.Generally it is not required unless you want some specific behavior. Defaults to None.
0 commit comments