@@ -53,7 +53,7 @@ def create(
53
53
timeout : float | None | NotGiven = NOT_GIVEN ,
54
54
) -> Assistant :
55
55
"""
56
- Create an Assistant with a model and instructions.
56
+ Create an assistant with a model and instructions.
57
57
58
58
Args:
59
59
model: ID of the model to use. You can use the
@@ -62,23 +62,23 @@ def create(
62
62
[Model overview](https://platform.openai.com/docs/models/overview) for
63
63
descriptions of them.
64
64
65
- description: The description of the Assistant . The maximum length is 512 characters.
65
+ description: The description of the assistant . The maximum length is 512 characters.
66
66
67
- file_ids: A list of [File ](https://platform.openai.com/docs/api-reference/files) IDs
68
- attached to this Assistant . There can be a maximum of 20 files attached to the
69
- Assistant . Files are ordered by their creation date in ascending order.
67
+ file_ids: A list of [file ](https://platform.openai.com/docs/api-reference/files) IDs
68
+ attached to this assistant . There can be a maximum of 20 files attached to the
69
+ assistant . Files are ordered by their creation date in ascending order.
70
70
71
- instructions: The system instructions that the Assistant uses. The maximum length is 32768
71
+ instructions: The system instructions that the assistant uses. The maximum length is 32768
72
72
characters.
73
73
74
74
metadata: Set of 16 key-value pairs that can be attached to an object. This can be useful
75
75
for storing additional information about the object in a structured format. Keys
76
76
can be a maximum of 64 characters long and values can be a maxium of 512
77
77
characters long.
78
78
79
- name: The name of the Assistant . The maximum length is 256 characters.
79
+ name: The name of the assistant . The maximum length is 256 characters.
80
80
81
- tools: A list of tool enabled on the Assistant . There can be a maximum of 128 tools per
81
+ tools: A list of tool enabled on the assistant . There can be a maximum of 128 tools per
82
82
assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`.
83
83
84
84
extra_headers: Send extra headers
@@ -122,7 +122,7 @@ def retrieve(
122
122
timeout : float | None | NotGiven = NOT_GIVEN ,
123
123
) -> Assistant :
124
124
"""
125
- Retrieves an Assistant .
125
+ Retrieves an assistant .
126
126
127
127
Args:
128
128
extra_headers: Send extra headers
@@ -160,20 +160,20 @@ def update(
160
160
extra_body : Body | None = None ,
161
161
timeout : float | None | NotGiven = NOT_GIVEN ,
162
162
) -> Assistant :
163
- """Modifies an Assistant .
163
+ """Modifies an assistant .
164
164
165
165
Args:
166
- description: The description of the Assistant .
166
+ description: The description of the assistant .
167
167
168
168
The maximum length is 512 characters.
169
169
170
170
file_ids: A list of [File](https://platform.openai.com/docs/api-reference/files) IDs
171
- attached to this Assistant . There can be a maximum of 20 files attached to the
172
- Assistant . Files are ordered by their creation date in ascending order. If a
171
+ attached to this assistant . There can be a maximum of 20 files attached to the
172
+ assistant . Files are ordered by their creation date in ascending order. If a
173
173
file was previosuly attached to the list but does not show up in the list, it
174
174
will be deleted from the assistant.
175
175
176
- instructions: The system instructions that the Assistant uses. The maximum length is 32768
176
+ instructions: The system instructions that the assistant uses. The maximum length is 32768
177
177
characters.
178
178
179
179
metadata: Set of 16 key-value pairs that can be attached to an object. This can be useful
@@ -187,9 +187,9 @@ def update(
187
187
[Model overview](https://platform.openai.com/docs/models/overview) for
188
188
descriptions of them.
189
189
190
- name: The name of the Assistant . The maximum length is 256 characters.
190
+ name: The name of the assistant . The maximum length is 256 characters.
191
191
192
- tools: A list of tool enabled on the Assistant . There can be a maximum of 128 tools per
192
+ tools: A list of tool enabled on the assistant . There can be a maximum of 128 tools per
193
193
assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`.
194
194
195
195
extra_headers: Send extra headers
@@ -235,7 +235,7 @@ def list(
235
235
extra_body : Body | None = None ,
236
236
timeout : float | None | NotGiven = NOT_GIVEN ,
237
237
) -> SyncCursorPage [Assistant ]:
238
- """Returns a list of Assistants .
238
+ """Returns a list of assistants .
239
239
240
240
Args:
241
241
after: A cursor for use in pagination.
@@ -298,7 +298,7 @@ def delete(
298
298
timeout : float | None | NotGiven = NOT_GIVEN ,
299
299
) -> AsssitantDeleted :
300
300
"""
301
- Delete an Assistant .
301
+ Delete an assistant .
302
302
303
303
Args:
304
304
extra_headers: Send extra headers
@@ -346,7 +346,7 @@ async def create(
346
346
timeout : float | None | NotGiven = NOT_GIVEN ,
347
347
) -> Assistant :
348
348
"""
349
- Create an Assistant with a model and instructions.
349
+ Create an assistant with a model and instructions.
350
350
351
351
Args:
352
352
model: ID of the model to use. You can use the
@@ -355,23 +355,23 @@ async def create(
355
355
[Model overview](https://platform.openai.com/docs/models/overview) for
356
356
descriptions of them.
357
357
358
- description: The description of the Assistant . The maximum length is 512 characters.
358
+ description: The description of the assistant . The maximum length is 512 characters.
359
359
360
- file_ids: A list of [File ](https://platform.openai.com/docs/api-reference/files) IDs
361
- attached to this Assistant . There can be a maximum of 20 files attached to the
362
- Assistant . Files are ordered by their creation date in ascending order.
360
+ file_ids: A list of [file ](https://platform.openai.com/docs/api-reference/files) IDs
361
+ attached to this assistant . There can be a maximum of 20 files attached to the
362
+ assistant . Files are ordered by their creation date in ascending order.
363
363
364
- instructions: The system instructions that the Assistant uses. The maximum length is 32768
364
+ instructions: The system instructions that the assistant uses. The maximum length is 32768
365
365
characters.
366
366
367
367
metadata: Set of 16 key-value pairs that can be attached to an object. This can be useful
368
368
for storing additional information about the object in a structured format. Keys
369
369
can be a maximum of 64 characters long and values can be a maxium of 512
370
370
characters long.
371
371
372
- name: The name of the Assistant . The maximum length is 256 characters.
372
+ name: The name of the assistant . The maximum length is 256 characters.
373
373
374
- tools: A list of tool enabled on the Assistant . There can be a maximum of 128 tools per
374
+ tools: A list of tool enabled on the assistant . There can be a maximum of 128 tools per
375
375
assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`.
376
376
377
377
extra_headers: Send extra headers
@@ -415,7 +415,7 @@ async def retrieve(
415
415
timeout : float | None | NotGiven = NOT_GIVEN ,
416
416
) -> Assistant :
417
417
"""
418
- Retrieves an Assistant .
418
+ Retrieves an assistant .
419
419
420
420
Args:
421
421
extra_headers: Send extra headers
@@ -453,20 +453,20 @@ async def update(
453
453
extra_body : Body | None = None ,
454
454
timeout : float | None | NotGiven = NOT_GIVEN ,
455
455
) -> Assistant :
456
- """Modifies an Assistant .
456
+ """Modifies an assistant .
457
457
458
458
Args:
459
- description: The description of the Assistant .
459
+ description: The description of the assistant .
460
460
461
461
The maximum length is 512 characters.
462
462
463
463
file_ids: A list of [File](https://platform.openai.com/docs/api-reference/files) IDs
464
- attached to this Assistant . There can be a maximum of 20 files attached to the
465
- Assistant . Files are ordered by their creation date in ascending order. If a
464
+ attached to this assistant . There can be a maximum of 20 files attached to the
465
+ assistant . Files are ordered by their creation date in ascending order. If a
466
466
file was previosuly attached to the list but does not show up in the list, it
467
467
will be deleted from the assistant.
468
468
469
- instructions: The system instructions that the Assistant uses. The maximum length is 32768
469
+ instructions: The system instructions that the assistant uses. The maximum length is 32768
470
470
characters.
471
471
472
472
metadata: Set of 16 key-value pairs that can be attached to an object. This can be useful
@@ -480,9 +480,9 @@ async def update(
480
480
[Model overview](https://platform.openai.com/docs/models/overview) for
481
481
descriptions of them.
482
482
483
- name: The name of the Assistant . The maximum length is 256 characters.
483
+ name: The name of the assistant . The maximum length is 256 characters.
484
484
485
- tools: A list of tool enabled on the Assistant . There can be a maximum of 128 tools per
485
+ tools: A list of tool enabled on the assistant . There can be a maximum of 128 tools per
486
486
assistant. Tools can be of types `code_interpreter`, `retrieval`, or `function`.
487
487
488
488
extra_headers: Send extra headers
@@ -528,7 +528,7 @@ def list(
528
528
extra_body : Body | None = None ,
529
529
timeout : float | None | NotGiven = NOT_GIVEN ,
530
530
) -> AsyncPaginator [Assistant , AsyncCursorPage [Assistant ]]:
531
- """Returns a list of Assistants .
531
+ """Returns a list of assistants .
532
532
533
533
Args:
534
534
after: A cursor for use in pagination.
@@ -591,7 +591,7 @@ async def delete(
591
591
timeout : float | None | NotGiven = NOT_GIVEN ,
592
592
) -> AsssitantDeleted :
593
593
"""
594
- Delete an Assistant .
594
+ Delete an assistant .
595
595
596
596
Args:
597
597
extra_headers: Send extra headers
0 commit comments