@@ -111,7 +111,7 @@ An individual assistant can access up to 128 tools including `code interpreter`,
111
111
112
112
#### [TypeScript keyless (Recommended)](#tab/typescript-keyless)
113
113
114
- 1. Create the `index.ts` file with the following **recommended** passwordless TypeScript module (index.ts) :
114
+ 1. Create the `index.ts` file with the following code :
115
115
116
116
```typescript
117
117
import { AzureOpenAI } from "openai";
@@ -242,7 +242,7 @@ An individual assistant can access up to 128 tools including `code interpreter`,
242
242
243
243
#### [TypeScript with API key](#tab/typescript-key)
244
244
245
- 1. To use the service key for authentication, you can create the `index.ts` file with the following TypeScript module (index.ts) :
245
+ 1. Create the `index.ts` file with the following code :
246
246
247
247
```typescript
248
248
import { AzureOpenAI } from "openai";
@@ -360,7 +360,7 @@ An individual assistant can access up to 128 tools including `code interpreter`,
360
360
361
361
#### [JavaScript keyless](#tab/javascript-keyless)
362
362
363
- 1. Create the `index.js` file with the following **recommended** passwordless JavaScript module :
363
+ 1. Create the `index.js` file with the following code :
364
364
365
365
```nodejs
366
366
import { AzureOpenAI } from "openai";
@@ -466,7 +466,7 @@ An individual assistant can access up to 128 tools including `code interpreter`,
466
466
467
467
#### [JavaScript with API key](#tab/javascript-key)
468
468
469
- 1. To use the service key for authentication, you can create the `index.js` file with the following JavaScript module :
469
+ 1. Create the `index.js` file with the following code :
470
470
471
471
```nodejs
472
472
import { AzureOpenAI } from "openai";
0 commit comments