Spaces:
Running on Zero
Running on Zero
| """Redac: a local privacy gateway. Detect and redact PII before any | |
| confidential text reaches a downstream model. Reversible by design.""" | |
| from .detect import Entity, detect_entities, DEFAULT_LABELS | |
| from .redact import redact, rehydrate | |
| from .vision import extract_text_from_image | |
| __all__ = [ | |
| "Entity", | |
| "detect_entities", | |
| "DEFAULT_LABELS", | |
| "redact", | |
| "rehydrate", | |
| "extract_text_from_image", | |
| ] | |