Skip to content

Commit 2646010

Browse files
committed
changed tool file format
1 parent 06a78ec commit 2646010

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ With Azure AI Foundry, you can:
3030

3131
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.
3232

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

3535
[!INCLUDE [feature-preview](../../includes/feature-preview.md)]
3636

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

299299
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.
300300

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-
309301
### Delete your models
310302

311303
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: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,31 +99,42 @@ tools: []
9999
100100
### Add tools to the Azure AI Agent
101101
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)
102+
Azure AI Agent Service has a set of knowledge and action tools that you can use to interact with your data sources.
103+
104+
105+
#### Available tools for Azure AI Agents
106+
107+
The following tools are available:
108+
109+
- Knowledge tools:
110+
- [Grounding with Bing search](/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=python&pivots=overview)
111+
- [File search]( /azure/ai-services/agents/how-to/tools/file-search?tabs=python&pivots=overview)
112+
- [Azure AI Search](/azure/ai-services/agents/how-to/tools/azure-ai-search?tabs=azurecli%2Cpython&pivots=overview-azure-ai-search)
113+
- [Microsoft Fabric](/azure/ai-services/agents/how-to/tools/fabric?tabs=csharp&pivots=overview)
114+
- [Use licensed data](/azure/ai-services/agents/how-to/tools/licensed-data)
115+
116+
- Action tools:
117+
- [Azure AI Agents function calling](/azure/ai-services/agents/how-to/tools/function-calling?tabs=python&pivots=overview)
107118
- [Code interpreter](/azure/ai-services/agents/how-to/tools/code-interpreter?tabs=python&pivots=overview)
108119
- [OpenAPI Specified tools](/azure/ai-services/agents/how-to/tools/openapi-spec?tabs=python&pivots=overview)
120+
- [Azure Functions](/azure/ai-services/agents/how-to/tools/azure-functions?tabs=python&pivots=overview)
109121
110122
#### Configure the tools YAML file
111123
112124
The Agent Designer adds tools to an AI Agent via .yaml files.
113125
114126
Create a tool configuration .yaml file using the following steps:
115127
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).
128+
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).
117129
118130
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:
119131
120132
```yml
121-
type: bing_grounding
122-
name: bing_search
123-
configuration:
124-
tool_connections:
125-
- >-
126-
/subscriptions/<Azure Subscription ID>/resourceGroups/<Azure Resource Group name>/providers/Microsoft.MachineLearningServices/workspaces/<Azure AI Foundry Project name>/connections/<Bing connection name>
133+
type: bing_grounding
134+
options:
135+
tool_connections:
136+
- >-
137+
/subscriptions/<Azure Subscription ID>/resourceGroups/<Azure Resource Group name>/providers/Microsoft.MachineLearningServices/workspaces/<Azure AI Foundry Project name>/connections/<Bing connection name>
127138
```
128139
1. Replace the placeholders in the connection string under the `tool_connections` section with your information:
129140

0 commit comments

Comments
 (0)