generate_unreasonable_thought
Challenges conventional wisdom by generating unconventional thoughts tailored to specific problems, fostering innovative and rebellious perspectives.
Instructions
Generate a new unreasonable thought that challenges conventional thinking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| forceRebellion | No | Force the thought to rebel against conventional wisdom | |
| previousThoughtId | No | Optional ID of a previous thought to build upon or rebel against | |
| problem | Yes | The problem or challenge to think unreasonably about |
Input Schema (JSON Schema)
{
"properties": {
"forceRebellion": {
"description": "Force the thought to rebel against conventional wisdom",
"type": "boolean"
},
"previousThoughtId": {
"description": "Optional ID of a previous thought to build upon or rebel against",
"type": "string"
},
"problem": {
"description": "The problem or challenge to think unreasonably about",
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}