Skip to content

Commit 4d4c315

Browse files
Merge pull request #4617 from ms-johnalex/upd-aif-ext-agent-050725
Updates to AI Foundry VS Code extension articles
2 parents 06a78ec + 6281b28 commit 4d4c315

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

articles/ai-foundry/how-to/develop/get-started-projects-vs-code.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ manager: mcleans
66
ms.service: azure-ai-foundry
77
content_well_notification:
88
- AI-contribution
9+
ai-usage: ai-assisted
910
ms.topic: how-to
10-
ms.date: 04/28/2025
11+
ms.date: 05/07/2025
1112
ms.reviewer: erichen
1213
ms.author: johalexander
1314
author: ms-johnalex
@@ -30,7 +31,7 @@ With Azure AI Foundry, you can:
3031

3132
With the Azure AI Foundry for Visual Studio Code extension, you can accomplish much of this workflow directly from Visual Studio Code. It also comes with other features, such as code templates, playgrounds, and integration with other VS Code extensions and features.
3233

33-
This article shoes you how to quickly get started using the features of the Azure AI Foundry for Visual Studio Code extension.
34+
This article shows you how to quickly get started using the features of the Azure AI Foundry for Visual Studio Code extension.
3435

3536
[!INCLUDE [feature-preview](../../includes/feature-preview.md)]
3637

@@ -298,14 +299,6 @@ You can also open the model playground using the following steps:
298299

299300
The Azure resources that you created in this article are billed to your Azure subscription. If you don't expect to need these resources in the future, delete them to avoid incurring more charges.
300301

301-
### Delete your agents
302-
303-
1. In the VS Code navbar, refresh the **Azure AI Foundry Extension**. In the **Resources** section, expand the **Agents** subsection to display the list of deployed agents.
304-
305-
1. Right-click on your deployed agent to delete and select the **Delete** option.
306-
307-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/delete-agent.png" alt-text="Screenshot of the AI Foundry portal with 'Agents' from the navigation menu on the left and the **Delete** button highlighted." lightbox="../../media/how-to/get-started-projects-vs-code/delete-agent.png":::
308-
309302
### Delete your models
310303

311304
1. In the VS Code navbar, refresh the **Azure AI Foundry Extension**. In the **Resources** section, expand the **Models** subsection to display the list of deployed models.

articles/ai-foundry/how-to/develop/vs-code-agents.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ manager: mcleans
66
ms.service: azure-ai-foundry
77
content_well_notification:
88
- AI-contribution
9+
ai-usage: ai-assisted
910
ms.topic: how-to
10-
ms.date: 04/29/2025
11+
ms.date: 05/07/2025
1112
ms.reviewer: erichen
1213
ms.author: johalexander
1314
author: ms-johnalex
@@ -99,28 +100,39 @@ tools: []
99100
100101
### Add tools to the Azure AI Agent
101102
102-
Azure AI Agent Service has a set of knowledge and action tools that you can use to interact with your data sources, such as:
103-
- [Grounding with Bing search](/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=python&pivots=overview)
104-
- [Azure AI Search](/azure/ai-services/agents/how-to/tools/file-search?tabs=python&pivots=overview)
105-
- [Azure Functions](/azure/ai-services/agents/how-to/tools/file-search?tabs=python&pivots=overview)
106-
- [File retrieval](/azure/ai-services/agents/how-to/tools/azure-functions?tabs=python&pivots=overview)
103+
Azure AI Agent Service has a set of knowledge and action tools that you can use to interact with your data sources.
104+
105+
106+
#### Available tools for Azure AI Agents
107+
108+
The following tools are available:
109+
110+
- Knowledge tools:
111+
- [Grounding with Bing search](/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=python&pivots=overview)
112+
- [File search]( /azure/ai-services/agents/how-to/tools/file-search?tabs=python&pivots=overview)
113+
- [Azure AI Search](/azure/ai-services/agents/how-to/tools/azure-ai-search?tabs=azurecli%2Cpython&pivots=overview-azure-ai-search)
114+
- [Microsoft Fabric](/azure/ai-services/agents/how-to/tools/fabric?tabs=csharp&pivots=overview)
115+
- [Use licensed data](/azure/ai-services/agents/how-to/tools/licensed-data)
116+
117+
- Action tools:
118+
- [Azure AI Agents function calling](/azure/ai-services/agents/how-to/tools/function-calling?tabs=python&pivots=overview)
107119
- [Code interpreter](/azure/ai-services/agents/how-to/tools/code-interpreter?tabs=python&pivots=overview)
108120
- [OpenAPI Specified tools](/azure/ai-services/agents/how-to/tools/openapi-spec?tabs=python&pivots=overview)
121+
- [Azure Functions](/azure/ai-services/agents/how-to/tools/azure-functions?tabs=python&pivots=overview)
109122
110123
#### Configure the tools YAML file
111124
112125
The Agent Designer adds tools to an AI Agent via .yaml files.
113126
114127
Create a tool configuration .yaml file using the following steps:
115128
116-
1. Perform any setup steps that might be required. See the article for the tool you’re interested in using. For example, [Grounding with Bing search](/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=python&pivots=overview#setup).
129+
1. Choose a tool from the [available tools for Azure AI Agents](#available-tools-for-azure-ai-agents). Perform any setup steps that might be required. For example, [Grounding with Bing search](/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=python&pivots=overview#setup).
117130
118131
1. Once you complete the setup, create a yaml code file that specifies the tool’s configuration. For example, this format for Grounding with Bing Search:
119132
120133
```yml
121134
type: bing_grounding
122-
name: bing_search
123-
configuration:
135+
options:
124136
tool_connections:
125137
- >-
126138
/subscriptions/<Azure Subscription ID>/resourceGroups/<Azure Resource Group name>/providers/Microsoft.MachineLearningServices/workspaces/<Azure AI Foundry Project name>/connections/<Bing connection name>

0 commit comments

Comments
 (0)