create_presentation_from_templates
Create a complete presentation by applying a sequence of templates with custom content and images, plus a unified color scheme. Turn template configurations into branded PowerPoint decks.
Instructions
Create a complete presentation from a sequence of templates.
Args: template_sequence: List of template configurations, each containing: - template_id: Template to use - content: Content mapping for the template - images: Image path mapping for the template color_scheme: Color scheme to apply to all slides presentation_title: Optional title for the presentation presentation_id: Presentation ID (uses current if None)
Example template_sequence: [ { "template_id": "title_slide", "content": { "title": "My Presentation", "subtitle": "Annual Report 2024", "author": "John Doe" } }, { "template_id": "text_with_image", "content": { "title": "Key Results", "content": "• Achievement 1\n• Achievement 2" }, "images": { "supporting": "/path/to/image.jpg" } } ]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color_scheme | No | modern_blue | |
| presentation_id | No | ||
| template_sequence | Yes | ||
| presentation_title | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |