Skip to content

Commit 4894e3c

Browse files
committed
update based on review
1 parent d2d499a commit 4894e3c

File tree

2 files changed

+17
-30
lines changed

2 files changed

+17
-30
lines changed

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

Lines changed: 17 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Your selected project will now display **Default** after the project name.
107107
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/default-project.png" alt-text="A screenshot of the designated default project." lightbox="../../media/how-to/get-started-projects-vs-code/default-project.png":::
108108

109109

110-
## Working with models
110+
## Work with models
111111

112112
The Azure AI Foundry for Visual Studio Code extension enables you to create, interact with, and deploy Large Language Models from within Visual Studio Code.
113113

@@ -227,8 +227,6 @@ Selecting a deployed model opens up a panel that provides some basic information
227227
- Endpoint info: This section contains the Target URI link, authentication type, and key.
228228
- Useful links: This section contains the code sample repository and tutorial links to get started with AI application development.
229229

230-
:::image type="content" source="../../media/how-to/get-started-projects-vs-code/display-model-card.png" alt-text="Screenshot of the model card for the selected model." lightbox="../../media/how-to/get-started-projects-vs-code/display-model-card.png":::
231-
232230
#### Update a model
233231

234232
To update the model card information, select the **Edit** button on the top-right of the model card.
@@ -288,7 +286,7 @@ Open the model playground using the following steps:
288286
1. Select the **History** link at the top-left of the playground to view the chat history.
289287

290288

291-
## Working with Azure AI Agent Service
289+
## Work with Azure AI Agent Service
292290

293291
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:
294292

@@ -316,7 +314,7 @@ Follow these steps to create an Azure AI Agent:
316314

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

319-
:::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":::
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.":::
320318

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

@@ -355,31 +353,20 @@ After you choose your save location, the Designer view will open to edit your AI
355353
Select the **Open Yaml File** on the top-right of the designer to open your AI Agent .yaml file. This file contains the details and setup information for your agent, similar to the following .yaml file example:
356354

357355
```yml
358-
version: 1.0.0
359-
360-
type: foundry_agent
361-
362-
name: extension-agent
363-
364-
description: Description of the agent
365-
366-
id: ''
367-
368-
model:
369-
370-
  id: ''
371-
372-
  options:
373-
374-
    temperature: 1
375-
376-
  configuration:
377-
378-
    type: aifoundry
379-
380-
instructions: Instructions for the agent
381-
382-
tools: []
356+
version: 1.0.0
357+
name: BingAgent
358+
description: Description of the agent
359+
metadata:
360+
author: Author Name
361+
tag: basic
362+
id: ''
363+
model:
364+
id: ''
365+
options:
366+
temperature: 1
367+
top_p: 1
368+
instructions: Instructions for the agent
369+
tools: []
383370
```
384371
385372
### Add tools to the Azure AI Agent
-19 Bytes
Loading

0 commit comments

Comments
 (0)