multi_tool_agent
Orchestrate AI agents to handle complex tasks by combining web search, file search, and computer actions based on your specific query requirements.
Instructions
Use an AI agent that can orchestrate between web search, file search, and computer actions based on your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable_computer_actions | No | Whether to enable computer action capabilities. | |
enable_file_search | No | Whether to enable file search capabilities. | |
enable_web_search | No | Whether to enable web search capabilities. | |
query | Yes | The query or task you want help with. | |
vector_store_ids | No | Required if enable_file_search is True. The IDs of the vector stores to search in. |
Input Schema (JSON Schema)
{
"properties": {
"enable_computer_actions": {
"default": true,
"description": "Whether to enable computer action capabilities.",
"title": "Enable Computer Actions",
"type": "boolean"
},
"enable_file_search": {
"default": false,
"description": "Whether to enable file search capabilities.",
"title": "Enable File Search",
"type": "boolean"
},
"enable_web_search": {
"default": true,
"description": "Whether to enable web search capabilities.",
"title": "Enable Web Search",
"type": "boolean"
},
"query": {
"description": "The query or task you want help with.",
"title": "Query",
"type": "string"
},
"vector_store_ids": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Required if enable_file_search is True. The IDs of the vector stores to search in.",
"title": "Vector Store Ids"
}
},
"required": [
"query"
],
"type": "object"
}