math_solve
Solve math problems using Chain of Draft reasoning to generate minimalistic intermediate steps, reducing token usage while maintaining accuracy.
Instructions
Solve a math problem using Chain of Draft reasoning
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approach | No | Force 'CoD' or 'CoT' approach | |
max_words_per_step | No | Maximum words per reasoning step | |
problem | Yes | The math problem to solve |
Input Schema (JSON Schema)
{
"properties": {
"approach": {
"description": "Force 'CoD' or 'CoT' approach",
"type": "string"
},
"max_words_per_step": {
"description": "Maximum words per reasoning step",
"type": "number"
},
"problem": {
"description": "The math problem to solve",
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}