├── .github └── workflows │ ├── cla.yml │ ├── publish-to-pypi.yml │ └── publish-to-test-pypi.yml ├── LICENSE ├── README.md ├── cla.md ├── gpt_guard ├── __init__.py ├── extract_sensitive_data.py └── re_append_sensitive_data.py ├── requirements.txt ├── setup.py └── signatures └── version1 └── cla.json /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/README.md -------------------------------------------------------------------------------- /cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/cla.md -------------------------------------------------------------------------------- /gpt_guard/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gpt_guard/extract_sensitive_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/gpt_guard/extract_sensitive_data.py -------------------------------------------------------------------------------- /gpt_guard/re_append_sensitive_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/gpt_guard/re_append_sensitive_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | spacy 2 | re 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/setup.py -------------------------------------------------------------------------------- /signatures/version1/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deploying-Securely/GPT-Guard/HEAD/signatures/version1/cla.json --------------------------------------------------------------------------------