bluera-knowledge 0.28.0 → 0.29.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/CHANGELOG.md +16 -0
- package/README.md +194 -13
- package/dist/{chunk-H25AEF47.js → chunk-7JTPAQFO.js} +80 -2
- package/dist/chunk-7JTPAQFO.js.map +1 -0
- package/dist/{chunk-BYLIDCWD.js → chunk-H465AZXC.js} +2 -2
- package/dist/{chunk-UXT3BCAH.js → chunk-T7J5RB6F.js} +21 -16
- package/dist/{chunk-UXT3BCAH.js.map → chunk-T7J5RB6F.js.map} +1 -1
- package/dist/{chunk-WP2GERAJ.js → chunk-U27UECDZ.js} +1323 -465
- package/dist/chunk-U27UECDZ.js.map +1 -0
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/dist/mcp/bootstrap.js +9 -1
- package/dist/mcp/bootstrap.js.map +1 -1
- package/dist/mcp/server.d.ts +135 -10
- package/dist/mcp/server.js +3 -3
- package/dist/{watch.service-THP6X5ZZ.js → watch.service-3ZP35WTM.js} +2 -2
- package/dist/workers/background-worker-cli.js +3 -3
- package/package.json +12 -3
- package/dist/chunk-H25AEF47.js.map +0 -1
- package/dist/chunk-WP2GERAJ.js.map +0 -1
- /package/dist/{chunk-BYLIDCWD.js.map → chunk-H465AZXC.js.map} +0 -0
- /package/dist/{watch.service-THP6X5ZZ.js.map → watch.service-3ZP35WTM.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
ZilAdapter,
|
|
4
4
|
runMCPServer,
|
|
5
5
|
spawnBackgroundWorker
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-T7J5RB6F.js";
|
|
7
7
|
import {
|
|
8
8
|
IntelligentCrawler,
|
|
9
9
|
getCrawlStrategy
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-H465AZXC.js";
|
|
11
11
|
import {
|
|
12
12
|
ASTParser,
|
|
13
13
|
AdapterRegistry,
|
|
@@ -25,14 +25,14 @@ import {
|
|
|
25
25
|
isRepoStoreDefinition,
|
|
26
26
|
isWebStoreDefinition,
|
|
27
27
|
ok
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-U27UECDZ.js";
|
|
29
29
|
import {
|
|
30
30
|
createDocumentId
|
|
31
31
|
} from "./chunk-CLIMKLTW.js";
|
|
32
32
|
import {
|
|
33
33
|
checkStoreModelCompatibility,
|
|
34
34
|
validateStoreModelCompatibility
|
|
35
|
-
} from "./chunk-
|
|
35
|
+
} from "./chunk-7JTPAQFO.js";
|
|
36
36
|
import "./chunk-DGUM43GV.js";
|
|
37
37
|
|
|
38
38
|
// src/cli/commands/crawl.ts
|
|
@@ -368,7 +368,7 @@ function createIndexCommand(getOptions) {
|
|
|
368
368
|
return;
|
|
369
369
|
}
|
|
370
370
|
const appConfig = await services.config.load();
|
|
371
|
-
const { WatchService } = await import("./watch.service-
|
|
371
|
+
const { WatchService } = await import("./watch.service-3ZP35WTM.js");
|
|
372
372
|
const watchService = new WatchService(services.index, services.lance, services.embeddings, {
|
|
373
373
|
ignorePatterns: appConfig.indexing.ignorePatterns,
|
|
374
374
|
currentModelId: services.store.getCurrentModelId()
|
|
@@ -1235,6 +1235,9 @@ Search: "${query}"`);
|
|
|
1235
1235
|
if (results.maxRawScore !== void 0) {
|
|
1236
1236
|
statusLine += ` | MaxRaw: ${results.maxRawScore.toFixed(3)}`;
|
|
1237
1237
|
}
|
|
1238
|
+
if (results.rerankTimeMs !== void 0) {
|
|
1239
|
+
statusLine += ` | Rerank: ${String(results.rerankTimeMs)}ms`;
|
|
1240
|
+
}
|
|
1238
1241
|
console.log(`${statusLine}
|
|
1239
1242
|
`);
|
|
1240
1243
|
if (results.results.length === 0) {
|