You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/assistants-javascript.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,11 +79,14 @@ In our code we are going to specify the following values:
79
79
80
80
An individual assistant can access up to 128 tools including `code interpreter`, as well as any custom tools you create via [functions](../how-to/assistant-functions.md).
81
81
82
-
Create and run an assistant with the following:
82
+
83
83
84
84
#### [TypeScript](#tab/typescript)
85
85
86
+
Create and run an assistant with the following TypeScript module:
87
+
86
88
```typescript
89
+
// index.ts
87
90
import {
88
91
AssistantsClient,
89
92
AssistantCreationOptions,
@@ -180,7 +183,10 @@ for (const runMessageDatum of runMessages.data) {
180
183
181
184
#### [JavaScript](#tab/javascript)
182
185
186
+
Create and run an assistant with the following ECMAScript module:
0 commit comments