|
16 | 16 | - name: Assistants
|
17 | 17 | description: Build Assistants that can call models and use tools.
|
18 | 18 | - name: Audio
|
19 |
| - description: Learn how to turn audio into text or text into audio. |
| 19 | + description: Turn audio into text or text into audio. |
20 | 20 | - name: Chat
|
21 | 21 | description: Given a list of messages comprising a conversation, the model will return a response.
|
22 | 22 | - name: Completions
|
@@ -7692,9 +7692,9 @@ components:
|
7692 | 7692 | required:
|
7693 | 7693 | - type
|
7694 | 7694 | - function
|
7695 |
| - |
| 7695 | + |
7696 | 7696 | ParallelToolCalls:
|
7697 |
| - description: Whether to enable [parallel function calling](/docs/guides/function-calling) during tool use. |
| 7697 | + description: Whether to enable [parallel function calling](/docs/guides/function-calling/parallel-function-calling) during tool use. |
7698 | 7698 | type: boolean
|
7699 | 7699 | default: true
|
7700 | 7700 |
|
@@ -10257,6 +10257,17 @@ components:
|
10257 | 10257 | required:
|
10258 | 10258 | - type
|
10259 | 10259 |
|
| 10260 | + AssistantToolsFileSearchTypeOnly: |
| 10261 | + type: object |
| 10262 | + title: FileSearch tool |
| 10263 | + properties: |
| 10264 | + type: |
| 10265 | + type: string |
| 10266 | + description: "The type of tool being defined: `file_search`" |
| 10267 | + enum: ["file_search"] |
| 10268 | + required: |
| 10269 | + - type |
| 10270 | + |
10260 | 10271 | AssistantToolsFunction:
|
10261 | 10272 | type: object
|
10262 | 10273 | title: Function tool
|
@@ -11225,7 +11236,7 @@ components:
|
11225 | 11236 | items:
|
11226 | 11237 | oneOf:
|
11227 | 11238 | - $ref: "#/components/schemas/AssistantToolsCode"
|
11228 |
| - - $ref: "#/components/schemas/AssistantToolsFileSearch" |
| 11239 | + - $ref: "#/components/schemas/AssistantToolsFileSearchTypeOnly" |
11229 | 11240 | x-oaiExpandable: true
|
11230 | 11241 | description: A list of files attached to the message, and the tools they were added to.
|
11231 | 11242 | nullable: true
|
@@ -11370,7 +11381,7 @@ components:
|
11370 | 11381 | items:
|
11371 | 11382 | oneOf:
|
11372 | 11383 | - $ref: "#/components/schemas/AssistantToolsCode"
|
11373 |
| - - $ref: "#/components/schemas/AssistantToolsFileSearch" |
| 11384 | + - $ref: "#/components/schemas/AssistantToolsFileSearchTypeOnly" |
11374 | 11385 | x-oaiExpandable: true
|
11375 | 11386 | description: A list of files attached to the message, and the tools they should be added to.
|
11376 | 11387 | required:
|
|
0 commit comments