cowthink
Generate ASCII art of a thinking cow with custom messages. Use various characters like dragons, penguins, or skeletons to create fun text-based art for documentation or entertainment.
Instructions
Generate ASCII art of a cow thinking something.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cow | No | The cow character to use. | default |
message | Yes | The message for the cow to think. | What to think about? |
Input Schema (JSON Schema)
{
"properties": {
"cow": {
"default": "default",
"description": "The cow character to use.",
"enum": [
"default",
"small",
"tux",
"moose",
"sheep",
"dragon",
"elephant",
"skeleton",
"stimpy"
],
"type": "string"
},
"message": {
"default": "What to think about?",
"description": "The message for the cow to think.",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}