data_summary
Generate a detailed summary of Excel sheet data by analyzing file content. Identifies key statistics and insights for structured data analysis and reporting.
Instructions
Generate a comprehensive summary of the data in an Excel file.
Args:
file_path: Path to the Excel file
sheet_name: Name of the sheet to summarize (for Excel files)
Returns:
Comprehensive data summary as string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
sheet_name | No |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"sheet_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sheet Name"
}
},
"required": [
"file_path"
],
"title": "data_summaryArguments",
"type": "object"
}