| name | gamma-presentation |
| description | Generate professional presentation content in JSON format. The system applies visual templates automatically. |
| license | Complete terms in LICENSE.txt |
| metadata | [object Object] |
| parameters | [object Object], [object Object], [object Object] |
Gamma Presentation - Content Generator
Overview
Generate presentation CONTENT only - not HTML/CSS. The system will automatically apply professional templates with responsive design and animations.
Your Task
Create structured slide content in JSON format based on the topic. Focus on:
- Clear, concise messaging
- Appropriate content for each slide type
- Theme-appropriate tone and emojis
- Logical flow from introduction to conclusion
Output Format
Output ONLY valid JSON (no markdown, no explanations):
{
"title": "Presentation Title",
"subtitle": "Optional subtitle",
"theme": "dark-tech|corporate|minimal|playful",
"slides": [
{
"type": "title",
"emoji": "🚀",
"heading": "Main Title",
"subheading": "Supporting text"
},
{
"type": "bullets",
"heading": "Section Title",
"items": [
"First key point",
"Second key point",
"Third key point"
]
},
{
"type": "grid-2x2",
"heading": "Four Key Areas",
"cards": [
{"title": "Card 1", "content": "Description"},
{"title": "Card 2", "content": "Description"},
{"title": "Card 3", "content": "Description"},
{"title": "Card 4", "content": "Description"}
]
},
{
"type": "grid-3col",
"heading": "Three Pillars",
"cards": [
{"title": "First", "content": "Details"},
{"title": "Second", "content": "Details"},
{"title": "Third", "content": "Details"}
]
},
{
"type": "two-column",
"heading": "Comparison",
"left": {
"title": "Left Side",
"items": ["Point 1", "Point 2", "Point 3"]
},
"right": {
"title": "Right Side",
"items": ["Point 1", "Point 2", "Point 3"]
}
},
{
"type": "quote",
"quote": "Inspirational or relevant quote here",
"author": "Quote Author or Source"
},
{
"type": "numbered",
"heading": "Step-by-Step Process",
"steps": [
{"number": "01", "title": "First Step", "description": "What to do"},
{"number": "02", "title": "Second Step", "description": "What to do"},
{"number": "03", "title": "Third Step", "description": "What to do"}
]
},
{
"type": "conclusion",
"heading": "Key Takeaway",
"message": "Main call-to-action or summary",
"submessage": "Supporting text or contact info"
}
]
}
Slide Types Reference
title
Title slide with emoji icon
emoji: Single emoji (theme-appropriate)heading: Main titlesubheading: Subtitle or tagline
bullets
Bullet point list
heading: Section titleitems: Array of 3-6 bullet points
grid-2x2
2x2 card grid layout
heading: Section titlecards: Array of 4 objects withtitleandcontent
grid-3col
3-column card layout
heading: Section titlecards: Array of 3 objects withtitleandcontent
two-column
Side-by-side comparison
heading: Section titleleft: Object withtitleanditemsarrayright: Object withtitleanditemsarray
quote
Centered inspirational quote
quote: The quote textauthor: Attribution
numbered
Numbered steps or sections
heading: Section titlesteps: Array of objects withnumber,title,description
conclusion
Final call-to-action slide
heading: Conclusion titlemessage: Main takeawaysubmessage: Optional supporting text
Theme-Appropriate Content
Dark Tech
Tone: Technical, innovative, forward-thinking Emojis: 🚀 🤖 💻 ⚡ 🔮 🎯 💎 🌐 🔬 ⚙️ Best for: Tech products, innovation, software, AI/ML
Corporate
Tone: Professional, authoritative, data-driven Emojis: 📊 💼 📈 🎯 ⚙️ 🏆 💡 📋 📅 🤝 Best for: Business, finance, reports, strategy
Minimal
Tone: Elegant, simple, clarity-focused Emojis: ✓ → • ○ ◆ ✦ ∴ ← ↗ ✨ Best for: Design, philosophy, clean messaging
Playful
Tone: Energetic, fun, creative, engaging Emojis: 🎨 🎉 🌈 ⭐ 🎪 🎭 🎸 🎮 🎲 🎈 Best for: Creative, education, entertainment
Content Guidelines by Slide Count
3-4 Slides
- Title slide
- Main content (bullets or grid)
- Conclusion
5-7 Slides (Recommended)
- Title slide
- Introduction/Problem
- Solution/Approach (grid or two-column)
- Benefits/Features (bullets or numbered)
- Quote or case study (optional)
- Conclusion
8-12 Slides
- Title slide
- Agenda/Overview
- Background/Context 4-6. Main content (varied layouts)
- Supporting evidence (quote)
- Summary
- Next steps/Call-to-action
Instructions
- Analyze the topic and determine appropriate structure
- Select slide types that best convey the information
- Vary layouts to maintain visual interest
- Match tone to the selected theme
- Keep text concise - 5-7 words per bullet, 1-2 sentences for descriptions
- Use theme-appropriate emojis from the lists above
- Output valid JSON - no markdown code blocks, no explanations
Example Output
For topic "AI in Healthcare" with Dark Tech theme and 5 slides:
{
"title": "AI Revolution in Healthcare",
"subtitle": "Transforming Patient Care Through Intelligence",
"theme": "dark-tech",
"slides": [
{
"type": "title",
"emoji": "🏥",
"heading": "AI Revolution in Healthcare",
"subheading": "Transforming Patient Care Through Intelligence"
},
{
"type": "bullets",
"heading": "The Challenge",
"items": [
"Rising healthcare costs globally",
"Shortage of medical professionals",
"Delayed diagnosis and treatment",
"Administrative burden on staff"
]
},
{
"type": "grid-2x2",
"heading": "AI-Powered Solutions",
"cards": [
{"title": "Diagnostics", "content": "ML models detect diseases earlier with 95% accuracy"},
{"title": "Personalization", "content": "Tailored treatment plans based on patient data"},
{"title": "Automation", "content": "Reduce admin tasks by 60% freeing staff time"},
{"title": "Prediction", "content": "Forecast patient outcomes and prevent complications"}
]
},
{
"type": "numbered",
"heading": "Implementation Roadmap",
"steps": [
{"number": "01", "title": "Data Integration", "description": "Consolidate patient records into unified system"},
{"number": "02", "title": "Model Training", "description": "Train AI on anonymized historical data"},
{"number": "03", "title": "Clinical Validation", "description": "Test with medical professionals in controlled trials"}
]
},
{
"type": "conclusion",
"heading": "The Future is Now",
"message": "Join the healthcare AI revolution",
"submessage": "Transform patient outcomes with intelligent systems"
}
]
}
Remember: Output ONLY the JSON. No code blocks, no explanations, no additional text.