From 68ddec0646e3c4357d64aa19670ba9556c01924e Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Wed, 12 Feb 2025 16:19:00 -0500 Subject: [PATCH 1/3] add which information is scrubbed Signed-off-by: Hannah Hunter --- .../building-blocks/conversation/conversation-overview.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md index 595870e274b..7423291b971 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md +++ b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md @@ -32,6 +32,11 @@ Prompt caching optimizes performance by storing and reusing prompts that are oft The PII obfuscation feature identifies and removes any form of sensitve user information from a conversation response. Simply enable PII obfuscation on input and output data to protect your privacy and scrub sensitive details that could be used to identify an individual. +The PII scrubber obfuscates user information such as: +- Phone numbers +- Email addresses +- IP address + ## Demo Watch the demo presented during [Diagrid's Dapr v1.15 celebration](https://www.diagrid.io/videos/dapr-1-15-deep-dive) to see how the conversation API works using the .NET SDK. From d26042ff23b37b20fc2878ce43e02c47345ce240 Mon Sep 17 00:00:00 2001 From: Yaron Schneider Date: Wed, 12 Feb 2025 15:40:29 -0800 Subject: [PATCH 2/3] Update conversation-overview.md Updated PII data being obfuscated --- .../conversation/conversation-overview.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md index 7423291b971..7ecd37ba867 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md +++ b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md @@ -32,10 +32,18 @@ Prompt caching optimizes performance by storing and reusing prompts that are oft The PII obfuscation feature identifies and removes any form of sensitve user information from a conversation response. Simply enable PII obfuscation on input and output data to protect your privacy and scrub sensitive details that could be used to identify an individual. -The PII scrubber obfuscates user information such as: +The PII scrubber obfuscates the following user information: - Phone numbers - Email addresses - IP address +- Street Address +- Credit Cards +- SSN +- ISBN +- Mac Address +- SHA1 Hex +- SHA256 Hex +- MD5 Hex ## Demo From 5f58e73dcdb650b1577ccdb5c31949d56ac09478 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 13 Feb 2025 09:47:12 -0500 Subject: [PATCH 3/3] quick edit Signed-off-by: Hannah Hunter --- .../conversation/conversation-overview.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md index 7ecd37ba867..3f2f79defa1 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md +++ b/daprdocs/content/en/developing-applications/building-blocks/conversation/conversation-overview.md @@ -33,17 +33,17 @@ Prompt caching optimizes performance by storing and reusing prompts that are oft The PII obfuscation feature identifies and removes any form of sensitve user information from a conversation response. Simply enable PII obfuscation on input and output data to protect your privacy and scrub sensitive details that could be used to identify an individual. The PII scrubber obfuscates the following user information: -- Phone numbers -- Email addresses +- Phone number +- Email address - IP address -- Street Address -- Credit Cards -- SSN +- Street address +- Credit cards +- Social Security number - ISBN -- Mac Address -- SHA1 Hex -- SHA256 Hex -- MD5 Hex +- Media Access Control (MAC) address +- Secure Hash Algorithm 1 (SHA-1) hex +- SHA-256 hex +- MD5 hex ## Demo