@@ -75,8 +75,6 @@ def async_(
7575 output_format : str ,
7676 csv_options : str | Omit = omit ,
7777 custom_instructions : str | Omit = omit ,
78- file_base64 : str | Omit = omit ,
79- file_url : str | Omit = omit ,
8078 include_metadata : str | Omit = omit ,
8179 json_options : str | Omit = omit ,
8280 prompt_mode : Literal ["append" , "replace" ] | Omit = omit ,
@@ -95,7 +93,8 @@ def async_(
9593 Recommended for large documents (>50 pages).
9694
9795 Args:
98- file: File to upload (PDF, Word, Excel, PowerPoint, images)
96+ file: File to upload (PDF, Word, Excel, PowerPoint, images). Alternatively use
97+ file_url or file_base64.
9998
10099 output_format: Output format(s): `markdown`, `html`, `json`, `csv`. Comma-separate for multiple
101100 (e.g., `markdown,json`).
@@ -104,10 +103,6 @@ def async_(
104103
105104 custom_instructions: Custom extraction instructions (e.g., `Format dates as YYYY-MM-DD`)
106105
107- file_base64: Base64-encoded file content
108-
109- file_url: URL to download file from
110-
111106 include_metadata: Comma-separated metadata: `bounding_boxes`, `confidence_score`
112107
113108 json_options: JSON extraction options. Values: `hierarchy_output`, `table-of-contents`, field
@@ -135,8 +130,6 @@ def async_(
135130 "output_format" : output_format ,
136131 "csv_options" : csv_options ,
137132 "custom_instructions" : custom_instructions ,
138- "file_base64" : file_base64 ,
139- "file_url" : file_url ,
140133 "include_metadata" : include_metadata ,
141134 "json_options" : json_options ,
142135 "prompt_mode" : prompt_mode ,
@@ -310,8 +303,6 @@ def sync(
310303 output_format : str ,
311304 csv_options : str | Omit = omit ,
312305 custom_instructions : str | Omit = omit ,
313- file_base64 : str | Omit = omit ,
314- file_url : str | Omit = omit ,
315306 include_metadata : str | Omit = omit ,
316307 json_options : str | Omit = omit ,
317308 prompt_mode : Literal ["append" , "replace" ] | Omit = omit ,
@@ -330,7 +321,8 @@ def sync(
330321 Provide exactly one of: `file`, `file_url`, or `file_base64`.
331322
332323 Args:
333- file: File to upload (PDF, Word, Excel, PowerPoint, images)
324+ file: File to upload (PDF, Word, Excel, PowerPoint, images). Alternatively use
325+ file_url or file_base64.
334326
335327 output_format: Output format(s): `markdown`, `html`, `json`, `csv`. Comma-separate for multiple
336328 (e.g., `markdown,json`).
@@ -339,10 +331,6 @@ def sync(
339331
340332 custom_instructions: Custom extraction instructions (e.g., `Format dates as YYYY-MM-DD`)
341333
342- file_base64: Base64-encoded file content
343-
344- file_url: URL to download file from
345-
346334 include_metadata: Comma-separated metadata: `bounding_boxes`, `confidence_score`
347335
348336 json_options: JSON extraction options. Values: `hierarchy_output`, `table-of-contents`, field
@@ -370,8 +358,6 @@ def sync(
370358 "output_format" : output_format ,
371359 "csv_options" : csv_options ,
372360 "custom_instructions" : custom_instructions ,
373- "file_base64" : file_base64 ,
374- "file_url" : file_url ,
375361 "include_metadata" : include_metadata ,
376362 "json_options" : json_options ,
377363 "prompt_mode" : prompt_mode ,
@@ -416,8 +402,6 @@ async def async_(
416402 output_format : str ,
417403 csv_options : str | Omit = omit ,
418404 custom_instructions : str | Omit = omit ,
419- file_base64 : str | Omit = omit ,
420- file_url : str | Omit = omit ,
421405 include_metadata : str | Omit = omit ,
422406 json_options : str | Omit = omit ,
423407 prompt_mode : Literal ["append" , "replace" ] | Omit = omit ,
@@ -436,7 +420,8 @@ async def async_(
436420 Recommended for large documents (>50 pages).
437421
438422 Args:
439- file: File to upload (PDF, Word, Excel, PowerPoint, images)
423+ file: File to upload (PDF, Word, Excel, PowerPoint, images). Alternatively use
424+ file_url or file_base64.
440425
441426 output_format: Output format(s): `markdown`, `html`, `json`, `csv`. Comma-separate for multiple
442427 (e.g., `markdown,json`).
@@ -445,10 +430,6 @@ async def async_(
445430
446431 custom_instructions: Custom extraction instructions (e.g., `Format dates as YYYY-MM-DD`)
447432
448- file_base64: Base64-encoded file content
449-
450- file_url: URL to download file from
451-
452433 include_metadata: Comma-separated metadata: `bounding_boxes`, `confidence_score`
453434
454435 json_options: JSON extraction options. Values: `hierarchy_output`, `table-of-contents`, field
@@ -476,8 +457,6 @@ async def async_(
476457 "output_format" : output_format ,
477458 "csv_options" : csv_options ,
478459 "custom_instructions" : custom_instructions ,
479- "file_base64" : file_base64 ,
480- "file_url" : file_url ,
481460 "include_metadata" : include_metadata ,
482461 "json_options" : json_options ,
483462 "prompt_mode" : prompt_mode ,
@@ -651,8 +630,6 @@ async def sync(
651630 output_format : str ,
652631 csv_options : str | Omit = omit ,
653632 custom_instructions : str | Omit = omit ,
654- file_base64 : str | Omit = omit ,
655- file_url : str | Omit = omit ,
656633 include_metadata : str | Omit = omit ,
657634 json_options : str | Omit = omit ,
658635 prompt_mode : Literal ["append" , "replace" ] | Omit = omit ,
@@ -671,7 +648,8 @@ async def sync(
671648 Provide exactly one of: `file`, `file_url`, or `file_base64`.
672649
673650 Args:
674- file: File to upload (PDF, Word, Excel, PowerPoint, images)
651+ file: File to upload (PDF, Word, Excel, PowerPoint, images). Alternatively use
652+ file_url or file_base64.
675653
676654 output_format: Output format(s): `markdown`, `html`, `json`, `csv`. Comma-separate for multiple
677655 (e.g., `markdown,json`).
@@ -680,10 +658,6 @@ async def sync(
680658
681659 custom_instructions: Custom extraction instructions (e.g., `Format dates as YYYY-MM-DD`)
682660
683- file_base64: Base64-encoded file content
684-
685- file_url: URL to download file from
686-
687661 include_metadata: Comma-separated metadata: `bounding_boxes`, `confidence_score`
688662
689663 json_options: JSON extraction options. Values: `hierarchy_output`, `table-of-contents`, field
@@ -711,8 +685,6 @@ async def sync(
711685 "output_format" : output_format ,
712686 "csv_options" : csv_options ,
713687 "custom_instructions" : custom_instructions ,
714- "file_base64" : file_base64 ,
715- "file_url" : file_url ,
716688 "include_metadata" : include_metadata ,
717689 "json_options" : json_options ,
718690 "prompt_mode" : prompt_mode ,
0 commit comments