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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,11 +107,11 @@ When you start the deployment, most parameters will have **default values**, but
107
107
|**Azure Region**| The region where resources will be created. | East US|
108
108
|**Resource Prefix**| Prefix for all resources created by this template. This prefix will be used to create unique names for all resources. The prefix must be unique within the resource group. | None |
109
109
|**AI Location**| Location for all AI services resources. This location can be different from the resource group location | None |
110
-
|**Capacity**| Configure capacity for **GPT models**. | 5k |
110
+
|**Capacity**| Configure capacity for **gpt-4o**. | 5k |
111
111
112
112
### [Optional] Quota Recommendations
113
113
By default, the **GPT model capacity** in deployment is set to **5k tokens**.
114
-
> **We recommend increasing the capacity to 30k tokens for optimal performance.**
114
+
> **We recommend increasing the capacity to 200k tokens for optimal performance.**
115
115
116
116
To adjust quota settings, follow these [steps](./docs/AzureGPTQuotaSettings.md)
117
117
@@ -262,7 +262,7 @@ You can try the [Azure pricing calculator](https://azure.microsoft.com/en-us/pri
262
262
* Azure AI Foundry: Free tier. [Pricing](https://azure.microsoft.com/pricing/details/ai-studio/)
263
263
* Azure Storage Account: Standard tier, LRS. Pricing is based on storage and operations. [Pricing](https://azure.microsoft.com/pricing/details/storage/blobs/)
264
264
* Azure Key Vault: Standard tier. Pricing is based on the number of operations. [Pricing](https://azure.microsoft.com/pricing/details/key-vault/)
265
-
* Azure AI Services: S0 tier, defaults to gpt-4o-mini and text-embedding-ada-002 models. Pricing is based on token count. [Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/)
265
+
* Azure AI Services: S0 tier, defaults to gpt-4o-mini. Pricing is based on token count. [Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/)
266
266
* Azure Container App: Consumption tier with 0.5 CPU, 1GiB memory/storage. Pricing is based on resource allocation, and each month allows for a certain amount of free usage. [Pricing](https://azure.microsoft.com/pricing/details/container-apps/)
Copy file name to clipboardExpand all lines: docs/CustomizingAzdParameters.md
+2-19Lines changed: 2 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,23 +3,16 @@ By default this template will use the environment name as the prefix to prevent
3
3
4
4
> To override any of the parameters, run `azd env set <key> <value>` before running `azd up`. On the first azd command, it will prompt you for the environment name. Be sure to choose 3-20 charaters alphanumeric unique name.
5
5
6
-
7
-
Change the Secondary Location (example: eastus2, westus2, etc.)
8
-
9
-
```shell
10
-
azd env set AZURE_ENV_SECONDARY_LOCATION eastus2
11
-
```
12
-
13
6
Change the Model Deployment Type (allowed values: Standard, GlobalStandard)
14
7
15
8
```shell
16
9
azd env set AZURE_ENV_MODEL_DEPLOYMENT_TYPE Standard
17
10
```
18
11
19
-
Set the Model Name (allowed values: gpt-4, gpt-4o)
12
+
Set the Model Name (allowed values: gpt-4)
20
13
21
14
```shell
22
-
azd env set AZURE_ENV_MODEL_NAME gpt-4o
15
+
azd env set AZURE_ENV_MODEL_NAME gpt-4
23
16
```
24
17
25
18
Change the Model Capacity (choose a number based on available GPT model capacity in your subscription)
@@ -28,13 +21,3 @@ Change the Model Capacity (choose a number based on available GPT model capacity
28
21
azd env set AZURE_ENV_MODEL_CAPACITY 30
29
22
```
30
23
31
-
Change the Embedding Model
32
-
33
-
```shell
34
-
azd env set AZURE_ENV_EMBEDDING_MODEL_NAME text-embedding-ada-002
35
-
```
36
-
37
-
Change the Embedding Deployment Capacity (choose a number based on available embedding model capacity in your subscription)
0 commit comments