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
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,8 +288,48 @@ Open the model playground using the following steps:
288
288
289
289
## Working with Azure AI Agent Service
290
290
291
+
After you deploy a model using the VS Code extension, AI Foundry, API, or SDK, you can work with [Azure AI Agent Service](/azure/ai-services/agents/overview). Agents are "smart" microservices that:
292
+
293
+
- Answer questions using their training data or search other sources with Retrieval Augmented Generation (RAG)
294
+
- Perform specific actions
295
+
- Automate complete workflows
296
+
297
+
Agents combine AI models with tools to access and interact with your data.
298
+
291
299
### Create and edit Azure AI Agents within the designer view
292
300
301
+
Follow these steps to create an Azure AI agent:
302
+
303
+
1. First, finish the [Get Started](#get-started) section to sign in to your Azure resources and set your default project.
304
+
305
+
1.[Deploy a model](#deploy-a-model) to use with your agent.
306
+
307
+
1. Select your AI Foundry project in the Azure Resources sidebar.
308
+
309
+
1. Under your project, find the **Agents** section.
310
+
311
+
1. Click the **+** (plus) icon next to **Agents** to create a new agent.
312
+
313
+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/select-agent-plus.png" alt-text="Screenshot of the plus sign next to the Agents subsection." lightbox="../../media/how-to/get-started-projects-vs-code/select-agent-plus.png":::
314
+
315
+
1. Select a directory and enter a name for your new agent yaml file in the **Save As** dialog box.
316
+
317
+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/enter-agent-name.png" alt-text="Screenshot of the VS Code Save As dialog to save the agent yaml file." lightbox="../../media/how-to/get-started-projects-vs-code/enter-agent-name.png":::
318
+
319
+
1. The agent designer will open, where you can:
320
+
321
+
1. Enter a name for your agent in the prompt.
322
+
323
+
1. Select a model to power your agent from the dropdown menu.
324
+
325
+
1. Configure and test.
326
+
- Add a description for your agent
327
+
- Set system instructions
328
+
- Configure tools the agent can use
329
+
- Test your agent's responses
330
+
331
+
9. Click **Save** to store your agent configuration.
332
+
293
333
### Show the Azure AI Agent YAML definition
294
334
295
335
### Deploy Azure AI Agents to the Azure AI Foundry Studio
0 commit comments