convert_excel_to_pdf
Transform Excel files (.xls, .xlsx) into PDF format for easy sharing and printing. Automates conversion through AI-driven tools, simplifying file format transitions.
Instructions
Converts Excel files (.xls, .xlsx) to PDF format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_path | Yes | Relative path to the Excel file (.xls, .xlsx) to convert | |
output_format | No | Output format (currently only PDF is supported) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"input_path": {
"description": "Relative path to the Excel file (.xls, .xlsx) to convert",
"minLength": 1,
"type": "string"
},
"output_format": {
"default": "pdf",
"description": "Output format (currently only PDF is supported)",
"enum": [
"pdf"
],
"type": "string"
}
},
"required": [
"input_path"
],
"type": "object"
}