| 36 | } |
| 37 | |
| 38 | export interface AnalyzeRequest { |
| 39 | text: string; |
| 40 | model_name?: string; |
| 41 | confidence_threshold?: number | null; |
| 42 | group_entities?: boolean; |
| 43 | aggregation_strategy?: AggregationStrategy | null; |
| 44 | sentence_detection?: boolean; |
| 45 | sentence_language?: string; |
| 46 | sentence_clean?: boolean; |
| 47 | use_fast_tokenizer?: boolean; |
| 48 | keep_alive?: KeepAliveValue | null; |
| 49 | } |
| 50 | |
| 51 | export interface PIIExtractRequest { |
| 52 | text: string; |
nothing calls this directly
no outgoing calls
no test coverage detected