get_model
Retrieve detailed information about specific HUMMBL mental models using their unique codes to support problem-solving and decision-making processes.
Instructions
Retrieve detailed information about a specific HUMMBL mental model using its code (e.g., P1, IN3, CO5).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Model code (e.g., P1, IN3, CO5) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Model code (e.g., P1, IN3, CO5)",
"pattern": "^(P|IN|CO|DE|RE|SY)\\d{1,2}$",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}