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/dist/index.js CHANGED
@@ -3,11 +3,11 @@ import {
3
3
  ZilAdapter,
4
4
  runMCPServer,
5
5
  spawnBackgroundWorker
6
- } from "./chunk-UXT3BCAH.js";
6
+ } from "./chunk-T7J5RB6F.js";
7
7
  import {
8
8
  IntelligentCrawler,
9
9
  getCrawlStrategy
10
- } from "./chunk-BYLIDCWD.js";
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-WP2GERAJ.js";
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-H25AEF47.js";
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-THP6X5ZZ.js");
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) {