Skip to content

Commit 30ca79a

Browse files
authored
Merge pull request #6795 from sdgilley/sdg-freshness
freshness updates - articles/ai-foundry/how-to/develop/install-cli-sdk.md & articles/ai-foundry/how-to/develop/sdk-overview.md
2 parents 425725d + c731462 commit 30ca79a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

articles/ai-foundry/how-to/develop/install-cli-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Instructions for installing the Azure AI Foundry SDK and the Azure
55
author: sdgilley
66
ms.author: sgilley
77
ms.reviewer: dantaylo
8-
ms.date: 04/22/2025
8+
ms.date: 08/27/2025
99
ms.service: azure-ai-foundry
1010
ms.topic: how-to
1111
ms.custom:

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom:
88
- ignite-2024
99
ai-usage: ai-assisted
1010
ms.topic: how-to
11-
ms.date: 08/15/2025
11+
ms.date: 08/27/2025
1212
ms.reviewer: dantaylo
1313
ms.author: sgilley
1414
author: sdgilley
@@ -120,6 +120,10 @@ The [Azure AI Foundry Projects client library for JavaScript](/javascript/api/ov
120120
121121
const endpoint = "your_project_endpoint"; // Replace with your actual endpoint
122122
const project = new AIProjectClient(endpoint, new DefaultAzureCredential());
123+
const projectClient = await project.getAzureOpenAIClient({
124+
// The API version should match the version of the Azure OpenAI resource
125+
apiVersion: "2024-12-01-preview"
126+
});
123127
// The AIProjectClient lets you access models, data, and services in your project.
124128
```
125129
@@ -168,6 +172,7 @@ The [Azure AI Foundry Projects client library for .NET](/dotnet/api/overview/azu
168172
```
169173
170174
::: zone-end
175+
171176
After you create a client, you can use it to access models, run evaluations, and connect to other AI services. The next section lists the available client libraries and shows how to use them for specific Azure AI services.
172177
173178
<a name="azure-ai-foundry-agent-service"></a>

zone-pivots/zone-pivot-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ groups:
14971497
- id: programming-language-csharp
14981498
title: C#
14991499
- id: programming-language-javascript
1500-
title: JavaScript
1500+
title: JavaScript/TypeScript
15011501
- id: programming-language-java
15021502
title: Java
15031503

0 commit comments

Comments
 (0)