Skip to content

Commit a456862

Browse files
committed
Update PII Redaction documentation following reviews
1 parent a3783f0 commit a456862

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

chapters/audio-intelligence/pii-redaction.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import PrerecordedBadge from "/snippets/badges/prerecorded.mdx"
99

1010
**PII Redaction** automatically detects and replaces sensitive entities (names, emails, addresses, etc.) in your transcript output. This feature is only available for **pre-recorded** transcription. \
1111
\
12-
Handling audio data often involves processing conversations that contain personally identifiable information such as names, phone numbers, or financial details. Redacting PII helps you comply with **privacy regulations** like GDPR and CCPA, protect your users' sensitive data, and reduce the risk of data breaches when storing or sharing transcripts.
12+
Handling audio data often involves processing conversations that contain personally identifiable information such as names, phone numbers, or financial details. Redacting PII helps you comply with **privacy regulations** like GDPR and CCPA/CPRA, protect your users' sensitive data, and reduce the risk of data breaches when storing or sharing transcripts.
1313
## Usage
1414

1515
Add `"pii_redaction": true` to your request to redact all detected PII in the transcript. Sensitive entities will be replaced with markers in the output.
@@ -28,12 +28,12 @@ Add `"pii_redaction": true` to your request to redact all detected PII in the tr
2828
You can customize the behavior with `pii_redaction_config`:
2929

3030
<ParamField body="entity_types" type="string[]">
31-
Preset or list of PII entity types to redact (e.g. `["GDPR"]`).
31+
Preset or list of PII entity types to redact (e.g. `["GDPR"]`). See [Supported entity types](#supported-entity-types) for available presets.
3232
</ParamField>
3333
<ParamField body="processed_text_type" type="enum" default="MARKER">
34-
How to replace detected PII: - **`MARKER`**: Placeholder labels like
35-
`[NAME_1]`, `[EMAIL_1]`. Same entity will have same ID. - **`MASK`**: Each
36-
character replaced by a mask (e.g. "John Smith" → `#### #####`)
34+
How to replace detected PII:
35+
- **`MARKER`**: Placeholder labels like `[NAME_1]`, `[EMAIL_1]`. Same entity will have same ID.
36+
- **`MASK`**: Each character replaced by a mask (e.g. "John Smith" → `#### #####`)
3737
</ParamField>
3838

3939
## Example body

0 commit comments

Comments
 (0)