Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/ahds_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ The AHDS de-identification service integration provides two main capabilities:

### For AHDS Recognizer
```bash
pip install presidio-analyzer[ahds]
pip install 'presidio-analyzer[ahds]'
```

### For AHDS Surrogate Operator
```bash
pip install presidio-anonymizer[ahds]
pip install "presidio-anonymizer[ahds]"
```

## Prerequisites
Expand Down Expand Up @@ -169,7 +169,7 @@ For production deployments, we recommend:

1. **ModuleNotFoundError**: Install the AHDS optional dependencies
```bash
pip install presidio-analyzer[ahds] presidio-anonymizer[ahds]
pip install "presidio-analyzer[ahds]" "presidio-anonymizer[ahds]"
```
Comment on lines 170 to 173

2. **Authentication errors**: Ensure Azure credentials are properly configured
Expand Down
4 changes: 2 additions & 2 deletions docs/samples/python/langextract/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Azure OpenAI provides cloud-based access to OpenAI models (GPT-4o, GPT-4, GPT-3.

1. **Install Presidio with LangExtract support**:
```sh
pip install presidio-analyzer[langextract]
pip install 'presidio-analyzer[langextract]'
```

2. **Set up Ollama**
Expand Down Expand Up @@ -199,7 +199,7 @@ Azure OpenAI provides cloud-based access to OpenAI models (GPT-4o, GPT-4, GPT-3.

1. **Install Presidio with LangExtract support**:
```sh
pip install presidio-analyzer[langextract]
pip install 'presidio-analyzer[langextract]'
```

This installs `langextract` with OpenAI support, including the OpenAI Python SDK and Azure Identity libraries.
Expand Down
2 changes: 1 addition & 1 deletion presidio-analyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Presidio analyzer supports language model-based PII/PHI detection (LLMs, SLMs) f
- **Azure OpenAI** - Cloud-based deployment with enterprise features

```bash
pip install presidio-analyzer[langextract]
pip install "presidio-analyzer[langextract]"
```

#### Quick Usage
Expand Down