@karmaniverous/jeeves-watcher 0.16.1 → 0.16.3
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/cli/jeeves-watcher/index.js +7617 -257
- package/dist/index.js +3 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8201,6 +8201,9 @@ const watcherDescriptor = {
|
|
|
8201
8201
|
'-c',
|
|
8202
8202
|
configPath,
|
|
8203
8203
|
],
|
|
8204
|
+
run: async (configPath) => {
|
|
8205
|
+
await startFromConfig(configPath);
|
|
8206
|
+
},
|
|
8204
8207
|
// Content — generateToolsContent is wired in the plugin package
|
|
8205
8208
|
// (watcherComponent.ts) where it has access to the API URL for menu generation.
|
|
8206
8209
|
sectionId: 'Watcher',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@karmaniverous/jeeves-watcher",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.3",
|
|
4
4
|
"author": "Jason Williscroft",
|
|
5
5
|
"description": "Filesystem watcher that keeps a Qdrant vector store in sync with document changes",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@commander-js/extra-typings": "^14.0.0",
|
|
54
|
-
"@karmaniverous/jeeves": "^0.4.
|
|
54
|
+
"@karmaniverous/jeeves": "^0.4.6",
|
|
55
55
|
"@karmaniverous/jsonmap": "^2.1.1",
|
|
56
56
|
"@langchain/textsplitters": "*",
|
|
57
57
|
"@qdrant/js-client-rest": "*",
|