chore(openapi): pick up upstream drift after rebase onto litellm_internal_staging

This commit is contained in:
Deepanshu 2026-08-27 21:16:30 -04:00
parent 4a483bc70e
commit 1d17b962d4
2 changed files with 17 additions and 0 deletions

View file

@ -11389,6 +11389,18 @@
"description": "Path to a JSON file containing ad-hoc recognizers for Presidio",
"title": "Presidio Ad Hoc Recognizers"
},
"presidio_analyze_chunk_size_bytes": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Maximum UTF-8 bytes of text sent in a single Presidio /analyze call. Longer texts are split into overlapping chunks of at most this size and the merged results are remapped onto the original text. Defaults to 500000; set it below your analyzer deployment's request body limit, leaving headroom for the rest of the analyze payload.",
"title": "Presidio Analyze Chunk Size Bytes"
},
"presidio_analyzer_api_base": {
"anyOf": [
{

View file

@ -29947,6 +29947,11 @@ export interface components {
* @description Path to a JSON file containing ad-hoc recognizers for Presidio
*/
presidio_ad_hoc_recognizers?: string | null;
/**
* Presidio Analyze Chunk Size Bytes
* @description Maximum UTF-8 bytes of text sent in a single Presidio /analyze call. Longer texts are split into overlapping chunks of at most this size and the merged results are remapped onto the original text. Defaults to 500000; set it below your analyzer deployment's request body limit, leaving headroom for the rest of the analyze payload.
*/
presidio_analyze_chunk_size_bytes?: number | null;
/**
* Presidio Analyzer Api Base
* @description Base URL for the Presidio analyzer API