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
The following example creates an Azure AI services connection. This example creates one connection for the AI services documented in the [Connect to Azure AI services](../../ai-services/how-to/connect-ai-services.md) article. The same connection also supports the Azure OpenAI service.
76
+
The following example creates an Azure AI services connection. This example creates one connection for the AI services documented in the [Connect to Azure AI services](../../../ai-services/connect-services-ai-foundry-portal.md) article. The same connection also supports the Azure OpenAI service.
77
77
78
78
```python
79
79
from azure.ai.ml.entities import AzureAIServicesConnection, ApiKeyConfiguration
Copy file name to clipboardExpand all lines: articles/ai-services/agents/how-to/use-your-own-resources.md
+27-7Lines changed: 27 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,11 @@ Use this article if you want to use the Azure Agent Service with resources you a
24
24
25
25
To use your own resources, you can edit the parameters in the provided deployment templates. To start, determine if you want to edit the [basic agent setup template](https://github.com/Azure-Samples/azureai-samples/tree/main/scenarios/Agents/setup/basic-agent-identity), or the [standard agent setup template](https://github.com/Azure-Samples/azureai-samples/tree/main/scenarios/Agents/setup/standard-agent).
26
26
27
-
**Basic Setup**: Agents use multitenant search and storage resources fully managed by Microsoft. You don't have visibility or control over these underlying Azure resources. You can only use your own AI services account with this option.
27
+
**Basic Setup**: Agents created in a basic project use multitenant search and storage resources fully managed by Microsoft. You don't have visibility or control over these underlying Azure resources. You can only use your own AI services account with this option.
28
28
29
-
**Standard Setup**: Agents use customer-owned, single-tenant search and storage resources. With this setup, you have full control and visibility over these resources, but you incur costs based on your usage. You can use your own AI services account, storage account, and/or Azure AI Search resource with this option.
29
+
**Standard Setup**: Agents created in a standard project use customer-owned, single-tenant search and storage resources. With this setup, you have full control and visibility over these resources, but you incur costs based on your usage. You can use your own AI services account, Azure Storage account, Cosmos DB for NoSQL account and/or Azure AI Search resource with this option.
30
30
31
-
## Basic agent setup: use an existing AI Services/Azure OpenAI resource
31
+
## Basic agent setup: Use an existing AI Services/Azure OpenAI resource
32
32
33
33
Replace the parameter value for `aiServiceAccountResourceId` with the full arm resource ID of the AI Services or Azure OpenAI resource you want to use.
34
34
@@ -52,11 +52,12 @@ Replace the parameter value for `aiServiceAccountResourceId` with the full arm r
52
52
If you want to use an existing Azure OpenAI resource, you will need to update the `aiServiceAccountResourceId` and the `aiServiceKind` parameters in the parameter file. The aiServiceKind parameter should be set to AzureOpenAI.
53
53
54
54
55
-
## Standard agent setup: use an existing AI Services/Azure OpenAI, storage, and/or Azure AI Search resource
55
+
## Standard agent setup: Use an existing AI Services/Azure OpenAI, Azure Storage account, Azure Cosmos DB for NoSQL account, and/or Azure AI Search resource
56
56
57
-
Use an existing AI Search, storage account, and/or Azure AI Search resource by providing the full arm resource ID in the standard agent template file.
57
+
Use an existing AI Services / Azure OpenAI, Azure Storage account, Azure Cosmos DB for NoSQL account and/or Azure AI Search resource by providing the full ARM resource ID in the standard agent template file.
58
+
59
+
### Use an existing AI Services or Azure OpenAI resource
58
60
59
-
Use an existing AI Services or Azure OpenAI resource:
60
61
1. Follow the steps in basic agent setup to get the AI Services account resource ID.
61
62
2. In the standard agent template file, replace the following placeholders:
62
63
@@ -66,7 +67,7 @@ Use an existing AI Services or Azure OpenAI resource:
66
67
[Azure OpenAI Only] aiServiceKind: AzureOpenAI
67
68
```
68
69
69
-
### Use an existing storage account
70
+
### Use an existing Azure Storage account for file storage
70
71
71
72
1. To get your storage account resource ID, sign in to the Azure CLI and select the subscription with your storage account:
72
73
@@ -82,6 +83,25 @@ Use an existing AI Services or Azure OpenAI resource:
| Deploy a basic agent setup that uses Managed Identity for authentication. Resources for the AI hub, AI project, storage account, and AI Services are created for you. <br><br> The AI Services account is connected to your project and hub, and a gpt-4o-mini model is deployed in the eastus region. A Microsoft-managed key vault is used by default. <br><br> [](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fazureai-samples%2Fmain%2Fscenarios%2FAgents%2Fsetup%2Fbasic-agent-identity%2Fazuredeploy.json)| :::image type="content" source="../media/quickstart/basic-agent-setup-resources.png" alt-text="An architecture diagram for basic agent setup." lightbox="../media/quickstart/basic-agent-setup-resources.png"::: |
43
-
| Deploy a standard agent setup that uses Managed Identity for authentication. <br><br> Resources for the AI hub, AI project, key vault, storage account, AI Services, and AI Search are created for you. <br><br>The AI Services, AI Search, key vault, and storage account are connected to your project and hub. A gpt-4o-mini model is deployed in eastus region. <br><br> [](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fazureai-samples%2Fmain%2Fscenarios%2FAgents%2Fsetup%2Fstandard-agent%2Fazuredeploy.json)| :::image type="content" source="../media/quickstart/standard-agent-setup-resources.png" alt-text="An architecture diagram for standard agent setup." lightbox="../media/quickstart/standard-agent-setup-resources.png"::: |
43
+
| Deploy a standard agent setup that uses Managed Identity for authentication. <br><br> Resources for the AI hub, AI project, key vault, storage account, AI Services, and AI Search are created for you. <br><br>The AI Services, AI Search, key vault, and storage account are connected to your project and hub. A gpt-4o-mini model is deployed in eastus region. <br><br> [](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure-Samples%2Fazureai-samples%2Fmain%2Fscenarios%2FAgents%2Fsetup%2Fstandard-agent-with-threadstorage%2Fazuredeploy.json)| :::image type="content" source="../media/quickstart/standard-agent-setup-resources.png" alt-text="An architecture diagram for standard agent setup." lightbox="../media/quickstart/standard-agent-setup-resources.png"::: |
44
44
45
45
46
46
### [Optional] Model selection in autodeploy template
@@ -50,9 +50,9 @@ By default, the deployment template is configured with the following values:
50
50
51
51
| Model Parameter | Default Value |
52
52
|------------------|----------------|
53
-
| modelName | gpt-4o-mini|
53
+
| modelName | gpt-4o|
54
54
| modelFormat | OpenAI (for Azure OpenAI) |
55
-
| modelVersion | 2024-07-18|
55
+
| modelVersion | 2024-11-20|
56
56
| modelSkuName | GlobalStandard |
57
57
| modelLocation | eastus |
58
58
@@ -88,4 +88,4 @@ Resources for the AI hub, AI project, and AI Services are created for you. A sto
88
88
:::image type="content" source="../media/quickstart/standard-agent-setup-resources.png" alt-text="An architecture diagram for standard agent setup." lightbox="../media/quickstart/standard-agent-setup-resources.png":::
89
89
90
90
Resources for the AI hub, AI project, key vault, storage account, AI Services, and AI Search are created for you. The AI Services, AI Search, key vault, and storage account are connected to your project and hub. A gpt-4o-mini model is deployed in eastus region using the Azure OpenAI endpoint for your resource.
Copy file name to clipboardExpand all lines: articles/ai-services/agents/includes/portal-agent-limitation.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,9 @@ author: aahill
4
4
ms.author: aahi
5
5
ms.service: azure-ai-agent-service
6
6
ms.topic: include
7
-
ms.date: 02/05/2025
7
+
ms.date: 04/13/2025
8
8
---
9
9
10
10
> [!NOTE]
11
-
> You can use the following automated bicep templates to perform either a standard or basic agent. You can also create a basic agent using the [Azure AI Foundry portal](../quickstart.md?pivots=ai-foundry). Azure AI Foundry currently doesn't support the standard agent setup.
11
+
> The Standard Agent Setup now supports **Bring your own (BYO) Thread Storage using an Azure Cosmos DB for NoSQL account**. This feature lets you store all messages and conversation history in your own Azure Cosmos DB for NoSQL account.
12
+
> You can use the following automated bicep templates to deploy either a Standard or Basic agent project. You can also create a basic project using the [Azure AI Foundry portal](../quickstart.md?pivots=ai-foundry). The Azure AI Foundry portal currently doesn't support creating a Standard project.
Copy file name to clipboardExpand all lines: articles/ai-services/agents/whats-new.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,10 @@ ms.custom: azure-ai-agents
15
15
16
16
This article provides a summary of the latest releases and major documentation updates for Azure AI Agent Service.
17
17
18
+
## April 2025
19
+
### BYO thread storage
20
+
The Standard Agent Setup now supports **Bring Your Own (BYO) thread storage using an Azure Cosmos DB for NoSQL account**. This feature ensures all thread messages and conversation history are stored in your own resources. See the [Quickstart](./quickstart.md) for more information on how to deploy a Standard agent project.
0 commit comments