Skip to content

Commit 66d1e15

Browse files
committed
typo
1 parent ca6ccae commit 66d1e15

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

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

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,23 @@ ms.reviewer: dantaylo
1313
ms.author: sgilley
1414
author: sdgilley
1515
zone_pivot_groups: programming-languages-sdk-overview
16+
# customer intent: I want to learn how to use the Azure AI Foundry SDK to build AI applications on Azure.
1617
---
1718

1819
# The Azure AI Foundry SDK
1920

2021
The Azure AI Foundry SDK is a comprehensive toolchain designed to simplify the development of AI applications on Azure. It enables developers to:
2122

22-
- Access popular models from various model providers through a single interface
23-
- Easily combine together models, data, and AI services to build AI-powered applications
24-
- Evaluate, debug, and improve application quality & safety across development, testing, and production environments
23+
- Access popular models from various model providers through a single interface
24+
- Easily combine together models, data, and AI services to build AI-powered applications
25+
- Evaluate, debug, and improve application quality & safety across development, testing, and production environments
2526

2627
The AI Foundry SDK is a set of packages and services designed to work together. You can use the Azure AI Projects client library to easily use multiple services through a single project client and connection string. You can also use services and SDKs on their own and connect directly to your services.
2728

2829
If you want to jump right in and start building an app, check out:
29-
- [Create a chat app](../../quickstarts/get-started-code.md)
30-
- [Create a custom RAG app](../../tutorials/copilot-sdk-create-resources.md)
30+
31+
- [Create a chat app](../../quickstarts/get-started-code.md)
32+
- [Create a custom RAG app](../../tutorials/copilot-sdk-create-resources.md)
3133

3234
## Get started with Projects
3335

@@ -37,15 +39,15 @@ First follow steps to [create an AI Project](../create-projects.md) if you don't
3739

3840
Sign in with the Azure CLI using the same account that you use to access your AI Project:
3941

40-
```
42+
```bash
4143
az login
4244
```
4345

4446
Install the Azure AI projects client library:
4547

4648
::: zone pivot="programming-language-python"
4749

48-
```
50+
```bash
4951
pip install azure-ai-projects azure-identity
5052
```
5153

@@ -83,8 +85,6 @@ project = await AIProjectClient.from_connection_string(
8385

8486
::: zone pivot="programming-language-csharp"
8587

86-
Install the Azure AI projects client library:
87-
8888
```bash
8989
dotnet add package Azure.AI.Projects
9090
```
@@ -127,7 +127,7 @@ If you have code that uses the OpenAI SDK, you can easily target your code to us
127127

128128
::: zone pivot="programming-language-python"
129129

130-
```
130+
```bash
131131
pip install openai
132132
```
133133

@@ -145,6 +145,7 @@ response = openai.chat.completions.create(
145145

146146
print(response.choices[0].message.content)
147147
```
148+
148149
If you’re already using the [Azure OpenAI SDK](../../../ai-services/openai/chatgpt-quickstart.md) directly against the Azure OpenAI Service, the project provides a convenient way to use Azure OpenAI Service capabilities alongside the rest of the AI Foundry capabilities.
149150

150151
::: zone-end
@@ -159,11 +160,11 @@ The [Azure AI model inference service](/azure/ai-studio/ai-services/model-infere
159160

160161
To use the model inference service, first ensure that your project has an AI Services connection (in the management center).
161162

162-
::: zone-pivot="programming-language-python"
163+
::: zone pivot="programming-language-python"
163164

164-
Install the ```azure-ai-inferencing``` client library:
165+
Install the `azure-ai-inferencing` client library:
165166

166-
```
167+
```bash
167168
pip install azure-ai-inference
168169
```
169170

@@ -184,6 +185,7 @@ response = chat.complete(
184185

185186
print(response.choices[0].message.content)
186187
```
188+
187189
::: zone-end
188190

189191
::: zone pivot="programming-language-csharp"
@@ -202,7 +204,7 @@ To use prompt templates, install the `azure-ai-inferencing` package:
202204

203205
::: zone pivot="programming-language-python"
204206

205-
```
207+
```bash
206208
pip install azure-ai-inference
207209
```
208210

@@ -260,6 +262,7 @@ response = chat.complete(
260262
**prompt_template.parameters,
261263
)
262264
```
265+
263266
::: zone-end
264267

265268
::: zone pivot="programming-language-csharp"
@@ -274,7 +277,7 @@ If you have an Azure AI Search resource connected to your project, you can also
274277

275278
Install the Azure AI Search client library:
276279

277-
```
280+
```bash
278281
pip install azure-search-documents
279282
```
280283

0 commit comments

Comments
 (0)