You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,7 +68,16 @@ The easiest way to get started is GitHub Codespaces, since it will setup all the
68
68
azd up
69
69
```
70
70
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 selecta 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 selecta 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).
72
81
73
82
### VS Code Dev Containers
74
83
@@ -81,6 +90,14 @@ A related option is VS Code Dev Containers, which will open the project in your
81
90
82
91
3. In the VS Code window that opens, once the project files show up (this may take several minutes), open a terminal window.
83
92
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).
0 commit comments