generate_presentation
Create professional presentations using predefined outlines. Integrate a gallery if needed, streamlining the process of transforming structured content into ready-to-use slides.
Instructions
Generate presentation based on the outline generated by generate_outline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_gallery | No | Include gallery in the generation result | |
outline | Yes | A standard outline generated by `generate_outline` |
Input Schema (JSON Schema)
{
"properties": {
"include_gallery": {
"default": false,
"description": "Include gallery in the generation result",
"title": "Include Gallery",
"type": "boolean"
},
"outline": {
"description": "A standard outline generated by `generate_outline`",
"title": "Outline",
"type": "string"
}
},
"required": [
"outline"
],
"title": "generate_presentationArguments",
"type": "object"
}