mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:40:44 +00:00
* refactor(pdf): move document extraction to plugin * fix(deps): sync document extract lockfile * fix(pdf): harden document extraction plugin
12 lines
444 B
TypeScript
12 lines
444 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export default definePluginEntry({
|
|
id: "document-extract",
|
|
name: "Document Extraction",
|
|
description: "Extract text and fallback page images from local document attachments.",
|
|
register() {
|
|
// Runtime is exposed through document-extractor.ts so document hot paths can
|
|
// load only the narrow extractor artifact instead of the full plugin entrypoint.
|
|
},
|
|
});
|