cowsay
Generate ASCII art with a cow or character displaying your custom message. Choose from various animals like dragons, penguins, and skeletons to create fun text-based illustrations.
Instructions
Generate ASCII art of a cow saying something.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cow | No | The cow character to use. | default |
message | Yes | The message for the cow to say. | Hello World! |
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": "Hello World!",
"description": "The message for the cow to say.",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}