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
"languageCode": {"description": "Language code to use for text processing (for example, `en`, `ar`, or `fr`). When omitted, the partition API will attempt to detect the language automatically.", "$ref": "#/components/schemas/language-code"}
1735
-
"forceOcr":
1736
-
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
1737
-
type: "boolean"
1738
1749
"mode": {"$ref": "#/components/schemas/mode"}
1739
1750
"disableImageExtraction":
1740
1751
description: "Disable image extraction from the document. When combined with `useLlm`, images may still be automatically captioned by the partition API. Defaults to `false`."
1741
1752
type: "boolean"
1753
+
"disableImageCaptions":
1754
+
description: "Disable synthetic image captions/descriptions in output. Images will be rendered as plain img tags without alt text. Defaults to `false`."
1755
+
type: "boolean"
1756
+
"chartUnderstanding":
1757
+
description: "Enable chart understanding. This will extract the data from the charts in the document. Defaults to `false`."
1758
+
type: "boolean"
1759
+
"keepPageheaderInOutput":
1760
+
description: "Keep the page header in the output. Defaults to `false`."
1761
+
type: "boolean"
1762
+
"keepPagefooterInOutput":
1763
+
description: "Keep the page footer in the output. Defaults to `false`."
1764
+
type: "boolean"
1765
+
"forceOcr":
1766
+
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
1767
+
deprecated: true
1768
+
x-speakeasy-deprecation-message: "We no longer support this option."
1769
+
type: "boolean"
1742
1770
"disableOcrMath":
1743
1771
description: "Disable inline math recognition in OCR. This can be useful if the document contains content that is frequently misclassified as math. Defaults to `false`."
1772
+
deprecated: true
1773
+
x-speakeasy-deprecation-message: "We no longer support this option."
1744
1774
type: "boolean"
1745
1775
"useLlm":
1746
1776
description: "Enable LLM-assisted parsing to improve tables, forms, inline math, and layout detection. May increase latency and token usage. Defaults to `true`."
1777
+
deprecated: true
1778
+
x-speakeasy-deprecation-message: "We no longer support this option. Use `mode` instead."
1747
1779
type: "boolean"
1748
1780
"chunkOverlap":
1749
1781
description: "[Deprecated] Custom chunk overlap (in characters) between consecutive chunks. Helps preserve context across chunk boundaries."
@@ -1803,18 +1835,36 @@ components:
1803
1835
- type: "number"
1804
1836
- type: "boolean"
1805
1837
"languageCode": {"description": "Language code to use for text processing (for example, `en`, `ar`, or `fr`). When omitted, the partition API will attempt to detect the language automatically.", "$ref": "#/components/schemas/language-code"}
1806
-
"forceOcr":
1807
-
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
1808
-
type: "boolean"
1809
1838
"mode": {"$ref": "#/components/schemas/mode"}
1810
1839
"disableImageExtraction":
1811
1840
description: "Disable image extraction from the document. When combined with `useLlm`, images may still be automatically captioned by the partition API. Defaults to `false`."
1812
1841
type: "boolean"
1842
+
"disableImageCaptions":
1843
+
description: "Disable synthetic image captions/descriptions in output. Images will be rendered as plain img tags without alt text. Defaults to `false`."
1844
+
type: "boolean"
1845
+
"chartUnderstanding":
1846
+
description: "Enable chart understanding. This will extract the data from the charts in the document. Defaults to `false`."
1847
+
type: "boolean"
1848
+
"keepPageheaderInOutput":
1849
+
description: "Keep the page header in the output. Defaults to `false`."
1850
+
type: "boolean"
1851
+
"keepPagefooterInOutput":
1852
+
description: "Keep the page footer in the output. Defaults to `false`."
1853
+
type: "boolean"
1854
+
"forceOcr":
1855
+
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
1856
+
deprecated: true
1857
+
x-speakeasy-deprecation-message: "We no longer support this option."
1858
+
type: "boolean"
1813
1859
"disableOcrMath":
1814
1860
description: "Disable inline math recognition in OCR. This can be useful if the document contains content that is frequently misclassified as math. Defaults to `false`."
1861
+
deprecated: true
1862
+
x-speakeasy-deprecation-message: "We no longer support this option."
1815
1863
type: "boolean"
1816
1864
"useLlm":
1817
1865
description: "Enable LLM-assisted parsing to improve tables, forms, inline math, and layout detection. May increase latency and token usage. Defaults to `true`."
1866
+
deprecated: true
1867
+
x-speakeasy-deprecation-message: "We no longer support this option. Use `mode` instead."
1818
1868
type: "boolean"
1819
1869
"chunkOverlap":
1820
1870
description: "[Deprecated] Custom chunk overlap (in characters) between consecutive chunks. Helps preserve context across chunk boundaries."
@@ -2375,6 +2425,24 @@ components:
2375
2425
anyOf:
2376
2426
- type: "string"
2377
2427
- type: "null"
2428
+
"ogTitle":
2429
+
description: "Custom Open Graph title for social media sharing."
2430
+
default:
2431
+
anyOf:
2432
+
- type: "string"
2433
+
- type: "null"
2434
+
"ogDescription":
2435
+
description: "Custom Open Graph description for social media sharing."
2436
+
default:
2437
+
anyOf:
2438
+
- type: "string"
2439
+
- type: "null"
2440
+
"ogImage":
2441
+
description: "Custom Open Graph image URL for social media sharing."
2442
+
default:
2443
+
anyOf:
2444
+
- type: "string"
2445
+
- type: "null"
2378
2446
"systemPrompt":
2379
2447
description: "The system prompt used for the chat interface."
2380
2448
default:
@@ -2486,6 +2554,9 @@ components:
2486
2554
- "title"
2487
2555
- "slug"
2488
2556
- "logo"
2557
+
- "ogTitle"
2558
+
- "ogDescription"
2559
+
- "ogImage"
2489
2560
- "systemPrompt"
2490
2561
- "exampleQuestions"
2491
2562
- "exampleSearchQueries"
@@ -2763,18 +2834,36 @@ components:
2763
2834
- type: "number"
2764
2835
- type: "boolean"
2765
2836
"languageCode": {"description": "Language code to use for text processing (for example, `en`, `ar`, or `fr`). When omitted, the partition API will attempt to detect the language automatically.", "$ref": "#/components/schemas/language-code"}
2766
-
"forceOcr":
2767
-
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
2768
-
type: "boolean"
2769
2837
"mode": {"$ref": "#/components/schemas/mode"}
2770
2838
"disableImageExtraction":
2771
2839
description: "Disable image extraction from the document. When combined with `useLlm`, images may still be automatically captioned by the partition API. Defaults to `false`."
2772
2840
type: "boolean"
2841
+
"disableImageCaptions":
2842
+
description: "Disable synthetic image captions/descriptions in output. Images will be rendered as plain img tags without alt text. Defaults to `false`."
2843
+
type: "boolean"
2844
+
"chartUnderstanding":
2845
+
description: "Enable chart understanding. This will extract the data from the charts in the document. Defaults to `false`."
2846
+
type: "boolean"
2847
+
"keepPageheaderInOutput":
2848
+
description: "Keep the page header in the output. Defaults to `false`."
2849
+
type: "boolean"
2850
+
"keepPagefooterInOutput":
2851
+
description: "Keep the page footer in the output. Defaults to `false`."
2852
+
type: "boolean"
2853
+
"forceOcr":
2854
+
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
2855
+
deprecated: true
2856
+
x-speakeasy-deprecation-message: "We no longer support this option."
2857
+
type: "boolean"
2773
2858
"disableOcrMath":
2774
2859
description: "Disable inline math recognition in OCR. This can be useful if the document contains content that is frequently misclassified as math. Defaults to `false`."
2860
+
deprecated: true
2861
+
x-speakeasy-deprecation-message: "We no longer support this option."
2775
2862
type: "boolean"
2776
2863
"useLlm":
2777
2864
description: "Enable LLM-assisted parsing to improve tables, forms, inline math, and layout detection. May increase latency and token usage. Defaults to `true`."
2865
+
deprecated: true
2866
+
x-speakeasy-deprecation-message: "We no longer support this option. Use `mode` instead."
2778
2867
type: "boolean"
2779
2868
"chunkOverlap":
2780
2869
description: "[Deprecated] Custom chunk overlap (in characters) between consecutive chunks. Helps preserve context across chunk boundaries."
@@ -2828,18 +2917,36 @@ components:
2828
2917
- type: "number"
2829
2918
- type: "boolean"
2830
2919
"languageCode": {"description": "Language code to use for text processing (for example, `en`, `ar`, or `fr`). When omitted, the partition API will attempt to detect the language automatically.", "$ref": "#/components/schemas/language-code"}
2831
-
"forceOcr":
2832
-
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
2833
-
type: "boolean"
2834
2920
"mode": {"$ref": "#/components/schemas/mode"}
2835
2921
"disableImageExtraction":
2836
2922
description: "Disable image extraction from the document. When combined with `useLlm`, images may still be automatically captioned by the partition API. Defaults to `false`."
2837
2923
type: "boolean"
2924
+
"disableImageCaptions":
2925
+
description: "Disable synthetic image captions/descriptions in output. Images will be rendered as plain img tags without alt text. Defaults to `false`."
2926
+
type: "boolean"
2927
+
"chartUnderstanding":
2928
+
description: "Enable chart understanding. This will extract the data from the charts in the document. Defaults to `false`."
2929
+
type: "boolean"
2930
+
"keepPageheaderInOutput":
2931
+
description: "Keep the page header in the output. Defaults to `false`."
2932
+
type: "boolean"
2933
+
"keepPagefooterInOutput":
2934
+
description: "Keep the page footer in the output. Defaults to `false`."
2935
+
type: "boolean"
2936
+
"forceOcr":
2937
+
description: "Force OCR on the document even if selectable text exists. Useful for scanned documents with unreliable embedded text. Defaults to `false`."
2938
+
deprecated: true
2939
+
x-speakeasy-deprecation-message: "We no longer support this option."
2940
+
type: "boolean"
2838
2941
"disableOcrMath":
2839
2942
description: "Disable inline math recognition in OCR. This can be useful if the document contains content that is frequently misclassified as math. Defaults to `false`."
2943
+
deprecated: true
2944
+
x-speakeasy-deprecation-message: "We no longer support this option."
2840
2945
type: "boolean"
2841
2946
"useLlm":
2842
2947
description: "Enable LLM-assisted parsing to improve tables, forms, inline math, and layout detection. May increase latency and token usage. Defaults to `true`."
2948
+
deprecated: true
2949
+
x-speakeasy-deprecation-message: "We no longer support this option. Use `mode` instead."
2843
2950
type: "boolean"
2844
2951
"chunkOverlap":
2845
2952
description: "[Deprecated] Custom chunk overlap (in characters) between consecutive chunks. Helps preserve context across chunk boundaries."
0 commit comments