| 49 | } |
| 50 | |
| 51 | export interface PIIExtractRequest { |
| 52 | text: string; |
| 53 | model_name?: string; |
| 54 | confidence_threshold?: number; |
| 55 | use_smart_merging?: boolean; |
| 56 | lang?: PIILanguage; |
| 57 | normalize_accents?: boolean | null; |
| 58 | keep_alive?: KeepAliveValue | null; |
| 59 | } |
| 60 | |
| 61 | export interface PIIDeidentifyRequest { |
| 62 | text: string; |
nothing calls this directly
no outgoing calls
no test coverage detected