Skip to content

Commit e19d5ac

Browse files
authored
Merge pull request Azure-Samples#59 from Azure-Samples/marlenezw-patch-1
Update README.md
2 parents fd52c83 + f7cba82 commit e19d5ac

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This sample demonstrates how to create and work with AI agents driven by [Azure
1616
- [Initializing the project](#initializing-the-project)
1717
- [Deployment](#deployment)
1818
- [Testing the sample](#testing-the-sample)
19-
- [Evaluating prompt flow results](#evaluating-prompt-flow-results)
19+
- [Evaluating prompt flow results](#evaluating-prompt-flow-results)
2020
- [Costs](#costs)
2121
- [Security Guidelines](#security-guidelines)
2222
- [Resources](#resources)
@@ -68,7 +68,16 @@ The easiest way to get started is GitHub Codespaces, since it will setup all the
6868
azd up
6969
```
7070

71-
This project uses `gpt-35-turbo-0613` and `gpt-4-1106-Preview` which may not be available in all Azure regions. Check for [up-to-date region availability](https://learn.microsoft.com/azure/ai-services/openai/concepts/models#standard-deployment-model-availability) and select a region during deployment accordingly. For this project we recommend East US 2.
71+
This project uses `gpt-35-turbo-0613` and `gpt-4-1106-Preview` which may not be available in all Azure regions. Check for [up-to-date region availability](https://learn.microsoft.com/azure/ai-services/openai/concepts/models#standard-deployment-model-availability) and select a region during deployment accordingly. For this project we recommend East US 2.
72+
73+
5. Install the necessary Python packages:
74+
75+
```
76+
src/api
77+
pip install -r requirements.txt
78+
```
79+
80+
Once the above steps are completed you can jump straight to [testing the sample](#testing-the-sample).
7281

7382
### VS Code Dev Containers
7483

@@ -81,6 +90,14 @@ A related option is VS Code Dev Containers, which will open the project in your
8190

8291
3. In the VS Code window that opens, once the project files show up (this may take several minutes), open a terminal window.
8392

93+
4. Install required packages:
94+
95+
```shell
96+
cd src/api
97+
pip install -r requirements.txt
98+
```
99+
Once you've completed these steps jump to [deployment](#deployment).
100+
84101
### Local environment
85102
86103
#### Prerequisites

0 commit comments

Comments
 (0)