analyze_presentation
Analyze PowerPoint presentations to extract structure, content insights, statistics, and readability metrics for improved presentation quality and effectiveness.
Instructions
Analyze PowerPoint presentation structure, content, and provide insights
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| analysis_type | No | Type of analysis to perform | comprehensive |
| detailed | No | Whether to provide detailed analysis | |
| file_path | Yes | Path to the PowerPoint file to analyze |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "comprehensive",
"description": "Type of analysis to perform",
"enum": [
"structure",
"content",
"statistics",
"readability",
"comprehensive"
],
"type": "string"
},
"detailed": {
"default": true,
"description": "Whether to provide detailed analysis",
"type": "boolean"
},
"file_path": {
"description": "Path to the PowerPoint file to analyze",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}