refactor(pdf): move document extraction to plugin

* refactor(pdf): move document extraction to plugin

* fix(deps): sync document extract lockfile

* fix(pdf): harden document extraction plugin
This commit is contained in:
Vincent Koc
2026-04-24 17:15:05 -07:00
committed by GitHub
parent 915931aa38
commit e3cba98f39
34 changed files with 1023 additions and 321 deletions

View File

@@ -0,0 +1,14 @@
{
"id": "document-extract",
"enabledByDefault": true,
"name": "Document Extraction",
"description": "Extract text and fallback page images from local document attachments.",
"contracts": {
"documentExtractors": ["pdf"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}