get_slide_info
Extract detailed slide information from PowerPoint presentations, including slide count and previews, for efficient content analysis and management.
Instructions
Get information about slides in a PowerPoint presentation.
Args: input_file: Path to the PowerPoint file (.pptx)
Returns: Information about the presentation including slide count and preview of each slide
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_file | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input_file": {
"title": "Input File",
"type": "string"
}
},
"required": [
"input_file"
],
"type": "object"
}