Skip to content

Commit 7c1582e

Browse files
committed
fix backtick:
2 parents 4038b1c + 873d1a8 commit 7c1582e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ Install the Azure OpenAI client and Azure Identity libraries for JavaScript with
2929
npm install openai @azure/identity @azure/openai
3030
```
3131

32+
<<<<<<< HEAD
3233
The `@azure/openai` dependency is included to extend the OpenAI model for the `data_sources` property. This import is only necessary for TypeScript.
34+
=======
35+
The `@azure/openai/types` dependency is included to extend the Azure OpenAI model for the `data_sources` property. This import is only necessary for TypeScript.
36+
>>>>>>> 873d1a85c45aa613e26bca472b6f80476dbcd47e
3337
3438
#### [JavaScript](#tab/javascript)
3539

@@ -66,7 +70,7 @@ Your app's _package.json_ file will be updated with the dependencies.
6670
function getClient(): AzureOpenAI {
6771
return new AzureOpenAI({
6872
endpoint,
69-
apiKey: apiKey,
73+
apiKey,
7074
deployment: deploymentName,
7175
apiVersion,
7276
});
@@ -160,7 +164,7 @@ Your app's _package.json_ file will be updated with the dependencies.
160164
function getClient() {
161165
return new AzureOpenAI({
162166
endpoint,
163-
apiKey: apiKey,
167+
apiKey,
164168
deployment: deploymentName,
165169
apiVersion,
166170
});

0 commit comments

Comments
 (0)