open-presentation
Open an existing PowerPoint presentation and create a backup copy. Specify the presentation name and optional save path to ensure data preservation during editing.
Instructions
Opens an existing presentation and saves a copy to a new file for backup. Use this tool when the user requests to open a presentation that has already been created.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | No | Path where to save the presentation (optional) | |
presentation_name | Yes | Name of the presentation to open |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"description": "Path where to save the presentation (optional)",
"type": "string"
},
"presentation_name": {
"description": "Name of the presentation to open",
"type": "string"
}
},
"required": [
"presentation_name"
],
"type": "object"
}