Skip to content

Commit 0ddb7df

Browse files
committed
aoai intro
1 parent 25170bb commit 0ddb7df

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
22
title: How to get started with Azure AI Foundry SDK
33
titleSuffix: Azure AI Studio
4-
description: This article provides an overview of available Azure AI SDKs.
4+
description: This article provides an overview of the Azure AI Foundry SDK and how to get started using it.
55
manager: scottpolly
66
ms.service: azure-ai-studio
77
ms.custom:
88
- build-2024
9+
- ignite-2024
910
ms.topic: overview
10-
ms.date: 11/07/2024
11+
ms.date: 11/19/2024
1112
ms.reviewer: dantaylo
1213
ms.author: sgilley
1314
author: sdgilley
@@ -83,7 +84,7 @@ Be sure to check out the [reference](https://aka.ms/aifoundrysdk/reference) and
8384

8485
## Azure OpenAI Service
8586

86-
The [Azure OpenAI Service](../../../ai-services/openai/overview.md) allows you to access OpenAI models the same day they launch. It integrates with the rest of Azure and provides enterprise scale and controls.
87+
The [Azure OpenAI Service](../../../ai-services/openai/overview.md) provides access to OpenAI's models including the GPT-4o, GPT-4o mini, GPT-4, GPT-4 Turbo with Vision, DALLE-3, Whisper, and Embeddings model series with the security and enterprise capabilities of Azure.
8788

8889
If you have code that uses the OpenAI SDK, you can easily target your code to use the Azure OpenAI service. First, install the OpenAI SDK:
8990
```
@@ -169,9 +170,11 @@ prompt_template = PromptTemplate.from_string(prompt_template="""
169170
messages = prompt_template.create_messages(first_name="Jane", last_name="Doe")
170171
print(messages)
171172
```
172-
NOTE: leading whitespace is automatically trimmed from input strings.
173173

174-
This code outputs messages that you can then pass to a chat completions call:
174+
> [!NOTE]
175+
> Leading whitespace is automatically trimmed from input strings.
176+
177+
This code outputs messages that you can then pass to a chat completion call:
175178

176179
```text
177180
[

0 commit comments

Comments
 (0)