recommend_models
Get mental model recommendations for problem-solving by describing your challenge. Uses the HUMMBL Base120 framework to suggest validated models that help analyze and address complex situations.
Instructions
Get recommended mental models based on a natural language problem description.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| problem | Yes | Detailed description of the problem or challenge |
Input Schema (JSON Schema)
{
"properties": {
"problem": {
"description": "Detailed description of the problem or challenge",
"minLength": 10,
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}