mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
chore(openapi): pick up upstream drift after rebase onto litellm_internal_staging
This commit is contained in:
parent
4a483bc70e
commit
1d17b962d4
2 changed files with 17 additions and 0 deletions
|
|
@ -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": [
|
||||
{
|
||||
|
|
|
|||
5
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
5
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue