mupdf4llm 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/index.js +1 -0
- package/package.json +20 -0
package/README.md
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
alert("Coming soon!")
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mupdf4llm",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Package which extracts data from PDF for LLM consumption using MuPDF.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mupdf",
|
|
7
|
+
"pdf",
|
|
8
|
+
"extraction",
|
|
9
|
+
"markdown",
|
|
10
|
+
"llm",
|
|
11
|
+
"rag"
|
|
12
|
+
],
|
|
13
|
+
"license": "AGPL-3.0-or-later",
|
|
14
|
+
"author": "Artifex Software, Inc.",
|
|
15
|
+
"type": "commonjs",
|
|
16
|
+
"main": "index.js",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
19
|
+
}
|
|
20
|
+
}
|