creative_exploration
Explore diverse perspectives and creative connections on a topic, incorporating metaphors and optional constraints to generate novel insights and solutions.
Instructions
Generate novel perspectives and connections for a topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
constraints | No | Optional constraints or parameters to consider | |
include_metaphors | No | Whether to include metaphorical thinking | |
perspective_count | No | Number of perspectives to generate | |
session_id | No | Optional session ID for maintaining state between calls | |
topic | Yes | The topic or problem to explore creatively |
Input Schema (JSON Schema)
{
"properties": {
"constraints": {
"description": "Optional constraints or parameters to consider",
"items": {
"type": "string"
},
"type": "array"
},
"include_metaphors": {
"default": true,
"description": "Whether to include metaphorical thinking",
"type": "boolean"
},
"perspective_count": {
"default": 3,
"description": "Number of perspectives to generate",
"type": "number"
},
"session_id": {
"description": "Optional session ID for maintaining state between calls",
"type": "string"
},
"topic": {
"description": "The topic or problem to explore creatively",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}