create_presentation
Generate a new PowerPoint presentation with custom title, slide count, and template style for structured content delivery.
Instructions
Create a new PowerPoint presentation with specified title and number of slides
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| output_path | No | Output file path (optional, defaults to current directory) | |
| slides | No | Number of slides to create (default: 1) | |
| template | No | Presentation template style | basic |
| title | Yes | Title of the presentation |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"description": "Output file path (optional, defaults to current directory)",
"type": "string"
},
"slides": {
"default": 1,
"description": "Number of slides to create (default: 1)",
"type": "number"
},
"template": {
"default": "basic",
"description": "Presentation template style",
"enum": [
"basic",
"professional",
"modern"
],
"type": "string"
},
"title": {
"description": "Title of the presentation",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}