list_pdfs
Locate and retrieve PDF file paths from specified directories using an optional filter. Simplify document management and access by identifying relevant PDFs efficiently.
Instructions
List PDF files in configured base paths
Args:
path_filter: Optional string to filter PDF paths
Returns:
List of PDF paths matching the filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path_filter | No |
Input Schema (JSON Schema)
{
"properties": {
"path_filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path Filter"
}
},
"title": "list_pdfsArguments",
"type": "object"
}