Skip to content

Commit 280297b

Browse files
Merge pull request #2242 from aahill/oyd-qs
Updating OYD JS quickstart and agents overview
2 parents 4c0f3eb + 491c9a5 commit 280297b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/ai-services/agents/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: aahill
77
ms.author: aahi
88
ms.service: azure-ai-agent-service
99
ms.topic: overview
10-
ms.date: 12/11/2024
10+
ms.date: 01/10/2025
1111
ms.custom: azure-ai-agents
1212
---
1313

@@ -69,7 +69,7 @@ Both services enable you to build agents using the same API and SDKs, but if you
6969

7070
**Flexible model selection** - Create agents that use Azure OpenAI models, or others such as Llama 3, Mistral and Cohere. Choose the most suitable model to meet your business needs.
7171

72-
**Extensive data integrations** - Ground your AI agents with relevant, secure enterprise knowledge from various data sources, such as Microsoft Bing, Microsoft SharePoint, Microsoft Fabric, Azure AI Search, and other APIs.
72+
**Extensive data integrations** - Ground your AI agents with relevant, secure enterprise knowledge from various data sources, such as Microsoft Bing, Azure AI Search, and other APIs.
7373

7474
**Enterprise grade security** - Ensure data privacy and compliance with secure data handling, keyless authentication, and no public egress.
7575

articles/ai-services/openai/includes/use-your-data-javascript.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: glharper
55
ms.author: glharper
66
ms.service: azure-ai-openai
77
ms.topic: include
8-
ms.date: 10/22/2024
8+
ms.date: 01/10/2025
99
---
1010

1111
[!INCLUDE [Set up required variables](./use-your-data-common-variables.md)]
@@ -24,7 +24,7 @@ npm init
2424
Install the Azure OpenAI client and Azure Identity libraries for JavaScript with npm:
2525

2626
```console
27-
npm install @azure/openai @azure/identity
27+
npm install openai @azure/identity
2828
```
2929

3030
Your app's _package.json_ file will be updated with the dependencies.
@@ -51,7 +51,7 @@ Your app's _package.json_ file will be updated with the dependencies.
5151

5252
// Required Azure OpenAI deployment name and API version
5353
const deploymentName = "gpt-4";
54-
const apiVersion = "2024-07-01-preview";
54+
const apiVersion = "2024-10-21";
5555

5656
function getClient() {
5757
return new AzureOpenAI({
@@ -139,7 +139,7 @@ Your app's _package.json_ file will be updated with the dependencies.
139139

140140
// Required Azure OpenAI deployment name and API version
141141
const deploymentName = "gpt-4";
142-
const apiVersion = "2024-07-01-preview";
142+
const apiVersion = "2024-10-21";
143143

144144
function getClient() {
145145
return new AzureOpenAI({

0 commit comments

Comments
 (0)