From a4a8d23344e3a867d778203cbe07eb6d6e68b5e3 Mon Sep 17 00:00:00 2001 From: Jeff Zemerick <13176962+jzonthemtn@users.noreply.github.com> Date: Tue, 11 Jul 2023 18:22:01 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3e85a9..39c999b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This project is a proxy for OpenAI that uses [Philter](https://philterd.ai/philter/) to remove PII, PHI, and other sensitive information from a [chat completion](https://platform.openai.com/docs/api-reference/chat) request before sending the request to OpenAI. If you don't have a running instance of Philter, you can launch one in your cloud at https://philterd.ai/philter/. -The proxy works by sending requests destined for OpenAI first to Philter where the sensitive information is redacted per Philter's configuration. The redacted text is then sent to OpenAI. For example, if you send the following text `How old is John Smith?`, the proxy and Philter will remove the text `John Smith` from the request. The redacted request sent to OpenAI will be `How old is {{{REDACTED}}}?` +The proxy works by sending requests destined for OpenAI first to Philter where the sensitive information is redacted per Philter's configuration. The redacted text is then sent to OpenAI. For example, if you send the following text `How old is John Smith?`, the proxy and Philter will remove the text `John Smith` from the request. The redacted request sent to OpenAI will be `How old is REDACTED?` Check out the [blog post](https://blog.philterd.ai/removing-pii-phi-from-openai-chat-gpt-api-requests-551f57cef64d) for more information.