Skip to content

Commit c22f05a

Browse files
committed
Updated based on editor feedback
1 parent 574c6ab commit c22f05a

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

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

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ You can also deploy a model directly from your Azure AI Foundry project.
206206

207207
#### View deployed models
208208

209-
In the Azure Resources Extension view, select the **caret** icon in front of the **Models**
210-
section to view the list of deployed models.
209+
In the Azure Resources Extension view, select the **caret** icon in front of the **Models** section to view the list of deployed models.
211210

212211
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/select-model-caret.png" alt-text="Screenshot of the highlighted caret icon next to the Models subsection." lightbox="../../media/how-to/get-started-projects-vs-code/select-model-caret.png":::
213212

@@ -315,13 +314,13 @@ Follow these steps to create an Azure AI Agent:
315314

316315
1. Select the **+** (plus) icon next to the **Agents** subsection to create a new AI Agent.
317316

318-
:::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.":::
317+
:::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.":::
319318

320319
1. In the **Save As** dialog box, select a directory and enter a name for your new AI Agent .yaml file.
321320

322321
1. Select the **Save Agent File** button to save your AI Agent file.
323322

324-
:::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":::
323+
:::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":::
325324

326325
### Interact with your agent in the designer
327326

@@ -333,17 +332,17 @@ After you choose your save location, the Designer view will open to edit your AI
333332

334333
1. Enter your model deployment name. The deployment name you chose when you deployed an existing model.
335334

336-
> [!TIP]
337-
> The model deployment name must be the exact name you chose for the model you deployed in your Azure AI Foundry project. In the following image, `gpt-4o-1` is the model deployment name you chose at deployment. `gpt-4o` is the model name.
338-
> :::image type="content" source="../../media/how-to/get-started-projects-vs-code/deployment-model-name.png" alt-text="Screenshot of the highlighted deployment model names, an arrow between them, and the model name highlighted in a different color." lightbox="../../media/how-to/get-started-projects-vs-code/deployment-model-name.png":::
335+
> [!TIP]
336+
> The model deployment name must be the exact name you chose for the model you deployed in your Azure AI Foundry project. In the following image, `gpt-4o-1` is the model deployment name you chose at deployment. `gpt-4o` is the model name.
337+
> :::image type="content" source="../../media/how-to/get-started-projects-vs-code/deployment-model-name.png" alt-text="Screenshot of the highlighted deployment model names, an arrow between them, and the model name highlighted in a different color." lightbox="../../media/how-to/get-started-projects-vs-code/deployment-model-name.png":::
339338
340339
1. Configure the following fields. The **ID** is generated by the extension:
341340

342341
- Add a description for your agent
343342
- Set system instructions
344343
- Configure tools for agent use
345344

346-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-designer.png" alt-text="Screenshot of the Agent designer that enables you to edit and interact with your AI Agent." lightbox="../../media/how-to/get-started-projects-vs-code/agent-designer.png":::
345+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-designer.png" alt-text="Screenshot of the Agent designer that enables you to edit and interact with your AI Agent." lightbox="../../media/how-to/get-started-projects-vs-code/agent-designer.png":::
347346

348347
1. Select the **Save locally** button in the bottom-center of the **Agent Preferences** screen to store your agent configuration.
349348

@@ -430,11 +429,11 @@ Deploy your agent directly to Azure AI Foundry with the following steps:
430429

431430
1. Select the **Deploy to Azure AI Foundry** button in the bottom-left of the designer.
432431

433-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-deploy.png" alt-text="Screenshot of the Agent designer with the 'Deploy to Azure AI Foundry' button highlighted." lightbox="../../media/how-to/get-started-projects-vs-code/agent-deploy.png":::
432+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-deploy.png" alt-text="Screenshot of the Agent designer with the 'Deploy to Azure AI Foundry' button highlighted." lightbox="../../media/how-to/get-started-projects-vs-code/agent-deploy.png":::
434433

435434
1. In the VS Code navbar, refresh the **Azure Resources** view. The deployed agent is displayed under the **Agents** subsection.
436435

437-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-deployed.png" alt-text="Screenshot of the 'Azure Resources' view. The deployed agent is highlighted under the 'Agents' subsection." lightbox="../../media/how-to/get-started-projects-vs-code/agent-deployed.png":::
436+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/agent-deployed.png" alt-text="Screenshot of the 'Azure Resources' view. The deployed agent is highlighted under the 'Agents' subsection." lightbox="../../media/how-to/get-started-projects-vs-code/agent-deployed.png":::
438437

439438
#### View the deployed AI Agent details
440439

@@ -444,7 +443,7 @@ Selecting the deployed agent opens the **Agent Preferences** page in a view only
444443

445444
- Select the **Open Playground** button to open the **Agent Playground**.
446445

447-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/deployed-agent-view.png" alt-text="Screenshot of the Agent Preferences page with the 'Open Yaml File' and 'Open Playground' buttons highlighted." lightbox="../../media/how-to/get-started-projects-vs-code/deployed-agent-view.png":::
446+
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/deployed-agent-view.png" alt-text="Screenshot of the Agent Preferences page with the 'Open Yaml File' and 'Open Playground' buttons highlighted." lightbox="../../media/how-to/get-started-projects-vs-code/deployed-agent-view.png":::
448447

449448

450449
### Interact with Agents using agents playground

0 commit comments

Comments
 (0)