tell_themed_story
Generate themed stories using only emojis. Choose from adventure, romance, horror, space, food, or party themes to create visual narratives.
Instructions
Tells a themed emoji story. Choose your adventure! πΊοΈβ¨
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| theme | Yes | Story theme: 'adventure', 'romance', 'horror', 'space', 'food', or 'party' |
Input Schema (JSON Schema)
{
"properties": {
"theme": {
"description": "Story theme: 'adventure', 'romance', 'horror', 'space', 'food', or 'party'",
"enum": [
"adventure",
"romance",
"horror",
"space",
"food",
"party"
],
"type": "string"
}
},
"required": [
"theme"
],
"type": "object"
}