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
When you start the deployment, most parameters will have **default values**, but you can update the following settings by following the steps [here](../docs/CustomizingAzdParameters.md):
|**Azure Region**| The region where resources will be created. | East US |
118
-
|**Azure AI Content Understanding Location**| Location for the **Content Understanding** service. | Sweden Central |
119
-
|**Secondary Location**| A **less busy** region for**Azure Cosmos DB**, usefulincase of availability constraints. | eastus2 |
120
-
|**Deployment Type**| Select from a drop-down list. | GlobalStandard |
121
-
|**GPT Model**| Choose from **gpt-4o**. | gpt-4o |
122
-
|**GPT Model Version**| GPT model version used in the deployment. | 2024-08-06 |
123
-
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models**. | 30k |
124
-
| **Use Local Build** | Boolean flag to determine if local container builds should be used. | false |
125
-
| **Image Tag** | Image version for deployment (allowed values: `latest`, `dev`, `hotfix`). | latest |
126
-
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID instead of creating a new one. | *(none)* |
127
-
| **Existing Azure AI Foundry Project** | To reuse an existing Azure AI Foundry Project ID instead of creating a new one. | *(none)* |
128
-
113
+
When you start the deployment, most parameters will have **default values**, but you can update the following settings by following the steps [here](../docs/CustomizingAzdParameters.md)
129
114
130
115
</details>
131
116
@@ -213,12 +198,14 @@ Once you've opened the project in [Codespaces](#github-codespaces), [Dev Contain
213
198
- **Linux/macOS**:
214
199
```bash
215
200
cd ./infra/scripts/
201
+
216
202
./docker-build.sh
217
203
```
218
204
219
205
- **Windows (PowerShell)**:
220
206
```powershell
221
207
cd .\infra\scripts\
208
+
222
209
.\docker-build.ps1
223
210
```
224
211
@@ -239,19 +226,35 @@ Once you've opened the project in [Codespaces](#github-codespaces), [Dev Contain
239
226
- **Execute Script to registering Schemas**
240
227
- Move the folder to samples/schemas in ContentProcessorApi - [/src/ContentProcessorApi/samples/schemas](/src/ContentProcessorApi/samples/schemas)
241
228
242
-
Bash
229
+
230
+
Git Bash
231
+
232
+
```bash
233
+
cd src/ContentProcessorAPI/samples/schemas
234
+
```
235
+
236
+
Powershell
237
+
238
+
```Powershell
239
+
cd .\src\ContentProcessorAPI\samples\schemas\
240
+
```
241
+
242
+
- Then use below command
243
+
244
+
Git Bash
243
245
244
246
```bash
245
247
./register_schema.sh https://<<API Service Endpoint>>/schemavault/ schema_info_sh.json
246
248
```
247
249
248
-
Windows
250
+
Powershell
249
251
250
252
```Powershell
251
253
./register_schema.ps1 https://<< API Service Endpoint>>/schemavault/ .\schema_info_ps1.json
0 commit comments