add-slide-picture-with-caption
Insert a new slide with a picture and caption into an existing PowerPoint presentation by specifying the title, caption, and image path.
Instructions
Add a new slide with a picture and caption to an existing presentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caption | Yes | Caption text to appear below the picture | |
image_path | Yes | Path to the image file to insert | |
presentation_name | Yes | Name of the presentation to add the slide to | |
title | Yes | Title of the slide |
Input Schema (JSON Schema)
{
"properties": {
"caption": {
"description": "Caption text to appear below the picture",
"type": "string"
},
"image_path": {
"description": "Path to the image file to insert",
"type": "string"
},
"presentation_name": {
"description": "Name of the presentation to add the slide to",
"type": "string"
},
"title": {
"description": "Title of the slide",
"type": "string"
}
},
"required": [
"presentation_name",
"title",
"caption",
"image_path"
],
"type": "object"
}