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
4 changes: 2 additions & 2 deletions Instructions/Labs/01-analyze-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ You'll develop your code using Cloud Shell from the Azure Portal. The code files
1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-textanalytics==5.3.0
```

Expand Down
6 changes: 3 additions & 3 deletions Instructions/Labs/02-qna.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ You'll develop your question answering app using Cloud Shell in the Azure portal
1. Create a Python virtual environment and install the Azure AI Language Question Answering SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
pip install -r requirements.txt azure-ai-language-questionanswering
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-language-questionanswering
```

1. Enter the following command to edit the configuration file:
Expand Down
6 changes: 3 additions & 3 deletions Instructions/Labs/03-language-understanding.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,9 +360,9 @@ You'll develop your language understanding app using Cloud Shell in the Azure po
1. Create a Python virtual environment and install the Azure AI Language Conversations SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
pip install -r requirements.txt azure-ai-language-conversations==1.1.0
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-language-conversations==1.1.0
```
1. Enter the following command to edit the configuration file:

Expand Down
6 changes: 3 additions & 3 deletions Instructions/Labs/04-text-classification.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ To test the custom text classification capabilities of the Azure AI Language ser
1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
pip install -r requirements.txt azure-ai-textanalytics==5.3.0
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-textanalytics==5.3.0
```

1. Enter the following command to edit the application configuration file:
Expand Down
6 changes: 3 additions & 3 deletions Instructions/Labs/05-extract-custom-entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ To test the custom entity extraction capabilities of the Azure AI Language servi
1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
pip install -r requirements.txt azure-ai-textanalytics==5.3.0
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-textanalytics==5.3.0
```

1. Enter the following command to edit the application configuration file:
Expand Down
4 changes: 2 additions & 2 deletions Instructions/Labs/06-translate-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ To test the text translation capabilities of Azure AI Translator, you'll develop
1. Create a Python virtual environment and install the Azure AI Translation SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-ai-translation-text==1.0.1
```

Expand Down
4 changes: 2 additions & 2 deletions Instructions/Labs/07-speech.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Let's start by creating an Azure AI Speech resource.
1. Create a Python virtual environment and install the Azure AI Speech SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-cognitiveservices-speech==1.42.0
```

Expand Down
4 changes: 2 additions & 2 deletions Instructions/Labs/08-translate-speech.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ Let's start by creating an Azure AI Speech resource.
1. Create a Python virtual environment and install the Azure AI Speech SDK package and other required packages by running the following command:

```
python -m venv labenv
./labenv/bin/Activate.ps1
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-cognitiveservices-speech==1.42.0
```

Expand Down
4 changes: 2 additions & 2 deletions Instructions/Labs/09-audio-chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Now that you deployed a model, you can use the Azure AI Foundry and Azure AI Mod
1. In the cloud shell command line pane, enter the following command to install the libraries you'll use:

```
python -m venv labenv
./labenv/bin/Activate.ps1
python -m venv labenv;
./labenv/bin/Activate.ps1;
pip install -r requirements.txt azure-identity azure-ai-projects openai
```

Expand Down