Skip to content

Commit a46ebb2

Browse files
committed
fix: defined additional parameters in overlay file
1 parent 2b7cd4e commit a46ebb2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

overlay_client.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,24 @@ actions:
4242
"type": "boolean",
4343
"default": false,
4444
}
45+
- target: $["components"]["schemas"]["partition_parameters"]["properties"]
46+
update:
47+
"split_pdf_cache_tmp_data":
48+
{
49+
"title": "Split Pdf Cache Temporary Data",
50+
"description": "When `split_pdf_page` is set to `True`, this parameter determines if the temporary data used for splitting the PDF should be cached into disc - if enabled should save significant amount of RAM memory when processing big files. It's an internal parameter for the Python client and is not sent to the backend.",
51+
"type": "boolean",
52+
"default": false,
53+
}
54+
- target: $["components"]["schemas"]["partition_parameters"]["properties"]
55+
update:
56+
"split_pdf_cache_tmp_data_dir":
57+
{
58+
"title": "Split Pdf Cache Temporary Data Directory",
59+
"description": "When `split_pdf_page` is set to `True` and `split_pdf_cache_tmp_data` feature is used, this parameter specifies the directory where the temporary data used for splitting the PDF should be cached into disc. It's an internal parameter for the Python client and is not sent to the backend.",
60+
"type": "string",
61+
"default": null,
62+
}
4563
- target: $["components"]["schemas"]["partition_parameters"]["properties"][*].anyOf[0]
4664
description: Add a null default to all optional parameters. Prevents the sdk from sending a default string when param is not specified.
4765
update:

0 commit comments

Comments
 (0)