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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,9 +108,9 @@ When you start a deployment, most parameters will have default values. You can c
108
108
|**Azure Region**| Select a region with quota which supports your selected model. ||
109
109
|**Model**| Choose from the [list of models supported by Azure AI Agent Service](https://learn.microsoft.com/azure/ai-services/agents/concepts/model-region-support) for your selected region. | gpt-4o-mini |
110
110
|**Model Format**| Choose from OpenAI or Microsoft, depending on your model. | OpenAI |
111
-
|**Model Deployment Capacity**| Configure capacity for your model. Recommended value is 100k. | 30k|
111
+
|**Model Deployment Capacity**| Configure capacity for your model. | 80k|
112
112
|**Embedding Model**| Choose from text-embedding-3-large, text-embedding-3-small, and text-embedding-ada-002. This may only be deployed if Azure AI Search is enabled. | text-embedding-3-small |
113
-
|**Embedding Model Capacity**| Configure capacity for your embedding model. |30k|
113
+
|**Embedding Model Capacity**| Configure capacity for your embedding model. |50k|
114
114
|**Knowledge Retrieval**| Choose from OpenAI's file search or including Azure AI Search Index. | OpenAI's file search |
115
115
116
116
For a detailed description of customizable fields and instructions, view the [deployment customization guide](docs/deploy_customization.md).
Copy file name to clipboardExpand all lines: docs/deploy_customization.md
+17-8Lines changed: 17 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,27 @@
3
3
4
4
This document describes how to customize the deployment of the Agents Chat with Azure AI Foundry. Once you follow the steps here, you can run `azd up` as described in the [Deploying](./../README.md#deploying-steps) steps.
*[Customizing model deployments](#customizing-model-deployments)
9
10
10
-
## Disabling resources
11
+
## Use existing resources
12
+
Be default, this template provisions a new resource group along with other resources. If you already have provisioned Azure AI Foundry and Azure AI Foundry Project, you might reuse these resources by setting:
11
13
12
-
Disabling a resource will stop that resource from being created and deployed to your Azure Project.
14
+
```shell
15
+
azd env set AZURE_EXISTING_AIPROJECT_RESOURCE_ID "https://<your-ai-services-account-name>.services.ai.azure.com/api/projects/<your-project-name>"
16
+
```
17
+
18
+
Notices that Application Insight and AI Search will not be created in this scenario.
19
+
20
+
21
+
## Enabling and disabling resources provision
22
+
23
+
By default, provisioning Application Insights is enabled, and AI Search is disabled. The default setting can be changed by:
13
24
14
-
* To disable AI Search, run `azd env set USE_SEARCH_SERVICE false`
25
+
* To enable AI Search, run `azd env set USE_AZURE_AI_SEARCH_SERVICE true`
15
26
* To disable Application Insights, run `azd env set USE_APPLICATION_INSIGHTS false`
16
-
* To disable Container Registry, run `azd env set USE_CONTAINER_REGISTRY false`
17
27
18
28
Once you disable these resources, they will not be deployed when you run `azd up`.
19
29
@@ -22,9 +32,8 @@ Once you disable these resources, they will not be deployed when you run `azd up
22
32
By default, this template will use a naming convention with unique strings to prevent naming collisions within Azure.
23
33
To override default naming conventions, the following keys can be set:
24
34
25
-
*`AZURE_EXISTING_AIPROJECT_RESOURCE_ID` - An existing AI Project Resource ID be used. If specified, resources for AI Foundry Project and Azure AI service will not be created.
26
-
*`AZURE_AIPROJECT_NAME` - The name of the AI Foundry Project
27
-
*`AZURE_AISERVICES_NAME` - The name of the Azure AI service
35
+
*`AZURE_AIPROJECT_NAME` - The name of the Azure AI Foundry project
36
+
*`AZURE_AISERVICES_NAME` - The name of the Azure AI Foundry
28
37
*`AZURE_STORAGE_ACCOUNT_NAME` - The name of the Storage Account
29
38
*`AZURE_APPLICATION_INSIGHTS_NAME` - The name of the Application Insights instance
30
39
*`AZURE_LOG_ANALYTICS_WORKSPACE_NAME` - The name of the Log Analytics workspace used by Application Insights
instructions="Use AI Search always. Avoid to use base knowledge."ifisinstance(tool, AzureAISearchTool) else"Use File Search always. Avoid to use base knowledge."
0 commit comments