Skip to content

Commit c8bac5b

Browse files
Merge pull request #4807 from sdgilley/sdg-release-update-qs
Update quickstart
2 parents ad39832 + 9238b85 commit c8bac5b

File tree

3 files changed

+22
-67
lines changed

3 files changed

+22
-67
lines changed

articles/ai-foundry/includes/get-started-fdp.md

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,16 @@ No installation is necessary to use the Azure AI Foundry portal.
4646
```
4747
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your Python scripts.
4848
49-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/python/mslearn-resources/quickstart).
49+
> [!TIP]
50+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/python/mslearn-resources/quickstart).
5051
5152
# [Java](#tab/java)
5253
5354
1. [Install Java and Azure CLI](../how-to/develop/install-cli-sdk.md?pivots=programming-language-java).
5455
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your Java scripts.
5556
56-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/java/mslearn-resources/quickstart).
57+
> [!TIP]
58+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/java/mslearn-resources/quickstart).
5759
5860
# [JavaScript](#tab/javascript)
5961
@@ -62,7 +64,8 @@ The scripts in this quickstart are also available on [GitHub](https://github.com
6264
1. Download [package.json](https://github.com/azure-ai-foundry/foundry-samples/blob/main/samples/microsoft/javascript/mslearn-resources/quickstart/package.json).
6365
1. Install packages with `npm install`
6466
65-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/javascript/mslearn-resources/quickstart).
67+
> [!TIP]
68+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/javascript/mslearn-resources/quickstart).
6669
6770
# [C#](#tab/csharp)
6871
@@ -73,50 +76,22 @@ The scripts in this quickstart are also available on [GitHub](https://github.com
7376
7477
1. Make sure to sign in using the CLI `az login` (or `az login --use-device-code`) command to authenticate before running your C# scripts.
7578
76-
The scripts in this quickstart are also available on [GitHub](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/csharp/mslearn-resources/quickstart).
79+
> [!TIP]
80+
> All the code in this article is at [GitHub Quickstart](https://github.com/azure-ai-foundry/foundry-samples/tree/main/samples/microsoft/csharp/mslearn-resources/quickstart).
7781
7882
---
7983
8084
## Create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]
8185
8286
Use either the Azure AI Foundry portal or Azure CLI to create a project.
8387
84-
# [Azure AI Foundry portal](#tab/ai-foundry)
85-
8688
1. Sign in to the [Azure AI Foundry portal](https://ai.azure.com).
8789
1. On the home page, select **Create the future**. This creates a project and also include steps to start working with a basic Agent.
8890
8991
:::image type="content" source="../media/quickstarts/start-building.png" alt-text="Screenshot shows how to start building an Agent in Azure AI Foundry portal.":::
9092
9193
1. Fill in a name for your project and select **Create**.
9294
93-
# [Azure CLI](#tab/azurecli)
94-
95-
To create a [!INCLUDE [fdp-project-name](fdp-project-name.md)]:
96-
97-
1. Authenticate to your Azure subscription:
98-
99-
```azurecli
100-
az login
101-
```
102-
103-
For more information on authenticating, see [Authentication methods](/cli/azure/authenticate-azure-cli).
104-
105-
1. Create a resource group. For example in East US:
106-
107-
```azurecli
108-
az group create --name {my_resource_group} --location eastus
109-
```
110-
111-
1. Create a new Foundry resource and [!INCLUDE [fdp-project-name](fdp-project-name.md)]:
112-
113-
```azurecli
114-
az cognitiveservices account create --resource-group {my_resource_group} --account-name {foundry_resource_name} --sku "S0"
115-
116-
az cognitiveservices account project create --resource-group {my_resource_group} --name {my_project_name} --account-name {foundry_resource_name}
117-
```
118-
---
119-
12095
## Deploy a model
12196
12297
[!INCLUDE [tip-left-pane](../includes/tip-left-pane.md)]

articles/ai-foundry/includes/install-csharp-packages.md

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: include file
3-
description: include file
2+
title: Include file
3+
description: Include file
44
author: pablolopes
55
ms.reviewer: pablolopes
66
ms.author: pablolopes
@@ -10,44 +10,24 @@ ms.date: 04/30/2025
1010
ms.custom: include, build-2025
1111
---
1212

13-
* To work with Azure AI services in your .NET project, you'll need to install several NuGet packages. There are two ways to add these packages:
14-
15-
* Option 1: Using the .NET CLI. You can add NuGet packages using the .NET CLI in the integrated terminal:
16-
13+
* To work with Azure AI services in your .NET project, you'll need to install several NuGet packages. You can add NuGet packages using the .NET CLI in the integrated terminal:
1714

18-
```bash
19-
# Add Azure AI SDK packages
20-
dotnet add package Azure.AI.Foundry.Project
21-
dotnet add package Azure.Identity
22-
dotnet add package Microsoft.SemanticKernel
23-
dotnet add package Azure.AI.Projects.OneDP
24-
dotnet add package Azure.AI.Agents.Persistant
25-
dotnet add package Azure.AI.OpenAI
26-
dotnet add package Azure.Search.Documents
27-
dotnet add package Azure.Monitor.OpenTelemetry.AspNetCore
28-
```
2915

30-
* Option 2: Using the NuGet Package Manager in VS Code
16+
```bash
17+
# Add Azure AI SDK packages
18+
dotnet add package Azure.Identity
19+
dotnet add package Azure.AI.Projects
20+
dotnet add package Azure.AI.Agents.Persistant
21+
dotnet add package Azure.AI.OpenAI
22+
dotnet add package Azure.Search.Documents
23+
```
3124

32-
1. Open your project in VS Code
33-
1. Right-click on your project in the Solution Explorer panel (from C# Dev Kit)
34-
1. Select "Manage NuGet Packages..."
35-
1. Search for and install each of the following packages:
36-
- Azure.AI.Foundry.Project
37-
- Azure.Identity
38-
- Microsoft.SemanticKernel
39-
- Azure.AI.OpenAI
40-
- Azure.Search.Documents
41-
- Azure.Monitor.OpenTelemetry.AspNetCore
42-
- Azure.AI.Projects.OneDP
43-
- Azure.AI.Agents.Persistant
4425

4526
* After installing these packages, you'll need to add the appropriate using directives to your C# files:
4627
4728
```csharp
48-
using Azure.AI.Foundry.Project;
29+
using Azure.AI.Foundry.Projects;
4930
using Azure.Identity;
50-
using Microsoft.SemanticKernel;
5131
using Azure.AI.OpenAI;
5232
using Azure.Search.Documents;
5333
// Add other namespaces as needed

articles/ai-foundry/quickstarts/get-started-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Get started with the Azure AI Foundry
2+
title: "Quickstart: Get started with Azure AI Foundry"
33
titleSuffix: Azure AI Foundry
44
description: This article provides instructions on how to start using the Azure AI Foundry portal and the Azure AI Foundry SDK.
55
manager: scottpolly
@@ -15,7 +15,7 @@ zone_pivot_groups: project-type
1515
---
1616

1717

18-
# Get started with the Azure AI Foundry
18+
# Quickstart: Get started with Azure AI Foundry
1919

2020
::: zone pivot="hub-project"
2121

0 commit comments

Comments
 (0)