gpt5_query
Query GPT-5 with configurable reasoning effort and verbosity levels. Supports optional web search integration and custom system prompts for flexible AI interactions.
Instructions
Query GPT-5 with optional Web Search Preview. Supports verbosity and reasoning effort.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"max_output_tokens": {
"exclusiveMinimum": 0,
"type": "integer"
},
"model": {
"description": "Model name, e.g. gpt-5",
"type": "string"
},
"parallel_tool_calls": {
"type": "boolean"
},
"query": {
"description": "User question or instruction",
"type": "string"
},
"reasoning_effort": {
"enum": [
"low",
"minimal",
"medium",
"high"
],
"type": "string"
},
"system": {
"description": "Optional system prompt/instructions for the model",
"type": "string"
},
"tool_choice": {
"enum": [
"auto",
"none"
],
"type": "string"
},
"verbosity": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"web_search": {
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"search_context_size": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
}
},
"type": "object"
}
},
"required": [
"query"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}