pdf_merge_files
Combine multiple PDF documents into a single file for easier organization and sharing.
Instructions
Merge multiple PDF files into one combined PDF.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pdf_paths | Yes | ||
| output_path | No |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Output Path"
},
"pdf_paths": {
"items": {
"type": "string"
},
"title": "Pdf Paths",
"type": "array"
}
},
"required": [
"pdf_paths"
],
"type": "object"
}