Skip to content

Commit 98e09fb

Browse files
committed
add install all at top of article
1 parent b793d38 commit 98e09fb

File tree

1 file changed

+50
-7
lines changed

1 file changed

+50
-7
lines changed

articles/ai-foundry/how-to/develop/sdk-overview.md

Lines changed: 50 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ms.service: azure-ai-foundry
77
ms.custom:
88
- build-2024
99
- ignite-2024
10-
ms.topic: overview
11-
ms.date: 02/27/2025
10+
ms.topic: how-to
11+
ms.date: 03/27/2025
1212
ms.reviewer: dantaylo
1313
ms.author: sgilley
1414
author: sdgilley
@@ -31,18 +31,61 @@ If you want to jump right in and start building an app, check out:
3131
- [Create a chat app](../../quickstarts/get-started-code.md)
3232
- [Create a custom RAG app](../../tutorials/copilot-sdk-create-resources.md)
3333

34-
## Get started with Projects
34+
## Prerequisites
3535

36-
The best way to get started using the Azure AI Foundry SDK is by using a project. AI projects connect together different data, assets, and services you need to build AI applications. The AI project client allows you to easily access these project components from your code by using a single connection string.
36+
* [Create an AI Project](../create-projects.md) if you don't have one already.
37+
* Sign in with the Azure CLI using the same account that you use to access your AI Project:
38+
39+
```bash
40+
az login
41+
```
3742

38-
First follow steps to [create an AI Project](../create-projects.md) if you don't have one already.
43+
## Install all packages
3944

40-
Sign in with the Azure CLI using the same account that you use to access your AI Project:
45+
Install all the packages you need to get started with the Azure AI Foundry SDK.
46+
47+
::: zone pivot="programming-language-python"
4148

4249
```bash
43-
az login
50+
pip install azure-ai-projects azure-identity openai azure-ai-inference azure-search-documents azure-ai-evaluation azure-monitor-opentelemetry
51+
```
52+
53+
---
54+
55+
::: zone-end
56+
57+
::: zone pivot="programming-language-csharp"
58+
59+
```dotnet
60+
dotnet add package Azure.AI.Projects
61+
dotnet add package Azure.Identity
62+
dotnet add package Azure.AI.OpenAI
63+
dotnet add package Azure.AI.Inference
64+
dotnet add package Azure.Search.Documents
65+
```
66+
67+
Add using statements:
68+
69+
```csharp
70+
using Azure.Identity;
71+
using Azure.AI.Projects;
72+
using OpenAI.Chat;
73+
using Azure.AI.OpenAI;
74+
using Azure.AI.Inference;
75+
using Azure.Search.Documents;
76+
using Azure.Search.Documents.Models;
4477
```
4578

79+
---
80+
81+
::: zone-end
82+
83+
Or, use the following sections to install only the packages you need.
84+
85+
## Get started with Projects
86+
87+
The best way to get started using the Azure AI Foundry SDK is by using a project. AI projects connect together different data, assets, and services you need to build AI applications. The AI project client allows you to easily access these project components from your code by using a single connection string.
88+
4689
Install the Azure AI projects client library:
4790

4891
::: zone pivot="programming-language-python"

0 commit comments

Comments
 (0)