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: articles/ai-foundry/how-to/develop/get-started-projects-vs-code.md
+1-9Lines changed: 1 addition & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ With Azure AI Foundry, you can:
30
30
31
31
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.
32
32
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.
@@ -298,14 +298,6 @@ You can also open the model playground using the following steps:
298
298
299
299
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.
300
300
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
-
309
301
### Delete your models
310
302
311
303
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.
The Agent Designer adds tools to an AI Agent via .yaml files.
113
125
114
126
Create a tool configuration .yaml file using the following steps:
115
127
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).
117
129
118
130
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:
119
131
120
132
```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>
127
138
```
128
139
1. Replace the placeholders in the connection string under the `tool_connections` section with your information:
0 commit comments