bluera-knowledge 0.9.37 → 0.9.38
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 +21 -0
- package/dist/{chunk-6TKD5XE4.js → chunk-36IFANFI.js} +2 -2
- package/dist/{chunk-CGDEV2RC.js → chunk-XJFV7AJW.js} +3 -2
- package/dist/chunk-XJFV7AJW.js.map +1 -0
- package/dist/{chunk-AT6G626F.js → chunk-ZAWIPEYX.js} +2 -2
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +2 -2
- package/dist/workers/background-worker-cli.js +3 -2
- package/dist/workers/background-worker-cli.js.map +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/src/cli/commands/crawl.test.ts +1 -0
- package/src/cli/commands/crawl.ts +2 -0
- package/src/cli/commands/index-cmd.test.ts +1 -0
- package/src/db/lance.ts +2 -2
- package/src/services/index.service.test.ts +1 -0
- package/src/services/index.service.ts +2 -0
- package/src/workers/background-worker.test.ts +1 -0
- package/src/workers/background-worker.ts +2 -0
- package/dist/chunk-CGDEV2RC.js.map +0 -1
- /package/dist/{chunk-6TKD5XE4.js.map → chunk-36IFANFI.js.map} +0 -0
- /package/dist/{chunk-AT6G626F.js.map → chunk-ZAWIPEYX.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
createLogger,
|
|
4
4
|
summarizePayload,
|
|
5
5
|
truncateForLog
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-XJFV7AJW.js";
|
|
7
7
|
|
|
8
8
|
// src/crawl/intelligent-crawler.ts
|
|
9
9
|
import { EventEmitter } from "events";
|
|
@@ -765,4 +765,4 @@ var IntelligentCrawler = class extends EventEmitter {
|
|
|
765
765
|
export {
|
|
766
766
|
IntelligentCrawler
|
|
767
767
|
};
|
|
768
|
-
//# sourceMappingURL=chunk-
|
|
768
|
+
//# sourceMappingURL=chunk-ZAWIPEYX.js.map
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
runMCPServer
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-36IFANFI.js";
|
|
5
5
|
import {
|
|
6
6
|
IntelligentCrawler
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-ZAWIPEYX.js";
|
|
8
8
|
import {
|
|
9
9
|
ASTParser,
|
|
10
10
|
ChunkingService,
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
err,
|
|
17
17
|
extractRepoName,
|
|
18
18
|
ok
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-XJFV7AJW.js";
|
|
20
20
|
import "./chunk-6FHWC36B.js";
|
|
21
21
|
|
|
22
22
|
// src/index.ts
|
|
@@ -141,6 +141,7 @@ function createCrawlCommand(getOptions) {
|
|
|
141
141
|
spinner.text = "Indexing documents...";
|
|
142
142
|
}
|
|
143
143
|
await services.lance.addDocuments(store.id, docs);
|
|
144
|
+
await services.lance.createFtsIndex(store.id);
|
|
144
145
|
}
|
|
145
146
|
const crawlResult = {
|
|
146
147
|
success: true,
|