analyze_problem_complexity
Evaluate problem complexity by analyzing its structure and domain, facilitating efficient reasoning with minimal token usage through the Chain of Draft approach.
Instructions
Analyze the complexity of a problem
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | Problem domain | |
problem | Yes | The problem to analyze |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "Problem domain",
"type": "string"
},
"problem": {
"description": "The problem to analyze",
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}