gemini_reason
Solve complex math, science, and coding problems with transparent, step-by-step reasoning using advanced AI. Ideal for tasks requiring detailed explanations and logical processes.
Instructions
Solves complex problems with step-by-step reasoning using Gemini 2.0 Flash Thinking. Best for math and science problems, coding challenges, and tasks requiring transparent reasoning process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | No | Optional file path to include with the problem | |
model_id | No | Optional model ID override (advanced users only) | |
problem | Yes | The complex problem or question to solve | |
show_steps | No | Whether to show detailed reasoning steps (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Optional file path to include with the problem",
"type": "string"
},
"model_id": {
"description": "Optional model ID override (advanced users only)",
"type": "string"
},
"problem": {
"description": "The complex problem or question to solve",
"type": "string"
},
"show_steps": {
"default": false,
"description": "Whether to show detailed reasoning steps (default: false)",
"type": "boolean"
}
},
"required": [
"problem"
],
"type": "object"
}