llm-kb 0.4.2 → 0.6.0
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 +11 -6
- package/bin/{chunk-DHOXVEIR.js → chunk-3WBSKCCH.js} +96 -119
- package/bin/chunk-EZ7LPPEP.js +218 -0
- package/bin/chunk-Y2764FFH.js +1356 -0
- package/bin/cli.js +385 -874
- package/bin/{indexer-KSYRIVVN.js → indexer-K37QM2HP.js} +2 -1
- package/bin/public/index.html +949 -0
- package/bin/server-QC5SN6T4.js +1069 -0
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-kb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "LLM-powered knowledge base. Drop documents, build a wiki, ask questions. Inspired by Karpathy.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"llm-kb": "./bin/cli.js"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
],
|
|
12
12
|
"type": "module",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "tsup src/cli.ts --format esm --out-dir bin --clean",
|
|
14
|
+
"build": "tsup src/cli.ts --format esm --out-dir bin --clean && node -e \"const{cpSync}=require('fs');cpSync('src/web/public','bin/public',{recursive:true})\"",
|
|
15
15
|
"dev": "tsup src/cli.ts --format esm --out-dir bin --watch",
|
|
16
16
|
"test": "vitest run",
|
|
17
17
|
"test:watch": "vitest"
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"url": "https://github.com/satish860/llm-kb"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
+
"@hono/node-ws": "^1.3.0",
|
|
35
36
|
"@llamaindex/liteparse": "^1.4.4",
|
|
36
37
|
"@mariozechner/pi-coding-agent": "^0.65.0",
|
|
37
38
|
"adm-zip": "^0.5.17",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"chokidar": "^5.0.0",
|
|
40
41
|
"commander": "^13.1.0",
|
|
41
42
|
"exceljs": "^4.4.0",
|
|
42
|
-
|
|
43
|
+
"hono": "^4.12.12",
|
|
43
44
|
"marked": "^15.0.12",
|
|
44
45
|
"marked-terminal": "^7.3.0",
|
|
45
46
|
"officeparser": "^6.0.7"
|