@karmaniverous/jeeves-watcher 0.5.0-0 → 0.5.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/config.schema.json +170 -147
- package/dist/cjs/index.js +22 -4
- package/dist/cli/jeeves-watcher/index.js +22 -4
- package/dist/index.d.ts +7 -13
- package/dist/index.iife.js +22 -4
- package/dist/index.iife.min.js +1 -1
- package/dist/mjs/index.js +22 -4
- package/dist/skills/jeeves-watcher/SKILL.md +31 -16
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -22,25 +22,25 @@
|
|
|
22
22
|
"type": "object",
|
|
23
23
|
"properties": {
|
|
24
24
|
"paths": {
|
|
25
|
-
"$ref": "#/definitions/
|
|
25
|
+
"$ref": "#/definitions/__schema5"
|
|
26
26
|
},
|
|
27
27
|
"ignored": {
|
|
28
|
-
"$ref": "#/definitions/
|
|
28
|
+
"$ref": "#/definitions/__schema7"
|
|
29
29
|
},
|
|
30
30
|
"pollIntervalMs": {
|
|
31
|
-
"$ref": "#/definitions/
|
|
31
|
+
"$ref": "#/definitions/__schema9"
|
|
32
32
|
},
|
|
33
33
|
"usePolling": {
|
|
34
|
-
"$ref": "#/definitions/
|
|
34
|
+
"$ref": "#/definitions/__schema11"
|
|
35
35
|
},
|
|
36
36
|
"debounceMs": {
|
|
37
|
-
"$ref": "#/definitions/
|
|
37
|
+
"$ref": "#/definitions/__schema13"
|
|
38
38
|
},
|
|
39
39
|
"stabilityThresholdMs": {
|
|
40
|
-
"$ref": "#/definitions/
|
|
40
|
+
"$ref": "#/definitions/__schema15"
|
|
41
41
|
},
|
|
42
42
|
"respectGitignore": {
|
|
43
|
-
"$ref": "#/definitions/
|
|
43
|
+
"$ref": "#/definitions/__schema17"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"required": [
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"description": "Configuration file watch settings.",
|
|
53
53
|
"allOf": [
|
|
54
54
|
{
|
|
55
|
-
"$ref": "#/definitions/
|
|
55
|
+
"$ref": "#/definitions/__schema19"
|
|
56
56
|
}
|
|
57
57
|
]
|
|
58
58
|
},
|
|
@@ -60,28 +60,28 @@
|
|
|
60
60
|
"type": "object",
|
|
61
61
|
"properties": {
|
|
62
62
|
"provider": {
|
|
63
|
-
"$ref": "#/definitions/
|
|
63
|
+
"$ref": "#/definitions/__schema23"
|
|
64
64
|
},
|
|
65
65
|
"model": {
|
|
66
|
-
"$ref": "#/definitions/
|
|
66
|
+
"$ref": "#/definitions/__schema25"
|
|
67
67
|
},
|
|
68
68
|
"chunkSize": {
|
|
69
|
-
"$ref": "#/definitions/
|
|
69
|
+
"$ref": "#/definitions/__schema27"
|
|
70
70
|
},
|
|
71
71
|
"chunkOverlap": {
|
|
72
|
-
"$ref": "#/definitions/
|
|
72
|
+
"$ref": "#/definitions/__schema29"
|
|
73
73
|
},
|
|
74
74
|
"dimensions": {
|
|
75
|
-
"$ref": "#/definitions/
|
|
75
|
+
"$ref": "#/definitions/__schema31"
|
|
76
76
|
},
|
|
77
77
|
"apiKey": {
|
|
78
|
-
"$ref": "#/definitions/
|
|
78
|
+
"$ref": "#/definitions/__schema33"
|
|
79
79
|
},
|
|
80
80
|
"rateLimitPerMinute": {
|
|
81
|
-
"$ref": "#/definitions/
|
|
81
|
+
"$ref": "#/definitions/__schema35"
|
|
82
82
|
},
|
|
83
83
|
"concurrency": {
|
|
84
|
-
"$ref": "#/definitions/
|
|
84
|
+
"$ref": "#/definitions/__schema37"
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"description": "Embedding model configuration."
|
|
@@ -90,13 +90,13 @@
|
|
|
90
90
|
"type": "object",
|
|
91
91
|
"properties": {
|
|
92
92
|
"url": {
|
|
93
|
-
"$ref": "#/definitions/
|
|
93
|
+
"$ref": "#/definitions/__schema39"
|
|
94
94
|
},
|
|
95
95
|
"collectionName": {
|
|
96
|
-
"$ref": "#/definitions/
|
|
96
|
+
"$ref": "#/definitions/__schema40"
|
|
97
97
|
},
|
|
98
98
|
"apiKey": {
|
|
99
|
-
"$ref": "#/definitions/
|
|
99
|
+
"$ref": "#/definitions/__schema41"
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"required": [
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"description": "Directory for persisted metadata sidecar files.",
|
|
110
110
|
"allOf": [
|
|
111
111
|
{
|
|
112
|
-
"$ref": "#/definitions/
|
|
112
|
+
"$ref": "#/definitions/__schema43"
|
|
113
113
|
}
|
|
114
114
|
]
|
|
115
115
|
},
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"description": "API server configuration.",
|
|
118
118
|
"allOf": [
|
|
119
119
|
{
|
|
120
|
-
"$ref": "#/definitions/
|
|
120
|
+
"$ref": "#/definitions/__schema44"
|
|
121
121
|
}
|
|
122
122
|
]
|
|
123
123
|
},
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"description": "Extractor configurations keyed by name.",
|
|
126
126
|
"allOf": [
|
|
127
127
|
{
|
|
128
|
-
"$ref": "#/definitions/
|
|
128
|
+
"$ref": "#/definitions/__schema47"
|
|
129
129
|
}
|
|
130
130
|
]
|
|
131
131
|
},
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"description": "Directory for persistent state files (issues.json, values.json). Defaults to metadataDir.",
|
|
134
134
|
"allOf": [
|
|
135
135
|
{
|
|
136
|
-
"$ref": "#/definitions/
|
|
136
|
+
"$ref": "#/definitions/__schema48"
|
|
137
137
|
}
|
|
138
138
|
]
|
|
139
139
|
},
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"description": "Rules for inferring metadata from file attributes.",
|
|
142
142
|
"allOf": [
|
|
143
143
|
{
|
|
144
|
-
"$ref": "#/definitions/
|
|
144
|
+
"$ref": "#/definitions/__schema49"
|
|
145
145
|
}
|
|
146
146
|
]
|
|
147
147
|
},
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"description": "Reusable named JsonMap transformations (inline definition or .json file path resolved relative to config directory).",
|
|
150
150
|
"allOf": [
|
|
151
151
|
{
|
|
152
|
-
"$ref": "#/definitions/
|
|
152
|
+
"$ref": "#/definitions/__schema57"
|
|
153
153
|
}
|
|
154
154
|
]
|
|
155
155
|
},
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"description": "Named reusable Handlebars templates (inline strings or .hbs/.handlebars file paths).",
|
|
158
158
|
"allOf": [
|
|
159
159
|
{
|
|
160
|
-
"$ref": "#/definitions/
|
|
160
|
+
"$ref": "#/definitions/__schema58"
|
|
161
161
|
}
|
|
162
162
|
]
|
|
163
163
|
},
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"description": "Custom Handlebars helper registration.",
|
|
166
166
|
"allOf": [
|
|
167
167
|
{
|
|
168
|
-
"$ref": "#/definitions/
|
|
168
|
+
"$ref": "#/definitions/__schema59"
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
171
|
},
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"description": "Custom JsonMap lib function registration.",
|
|
174
174
|
"allOf": [
|
|
175
175
|
{
|
|
176
|
-
"$ref": "#/definitions/
|
|
176
|
+
"$ref": "#/definitions/__schema60"
|
|
177
177
|
}
|
|
178
178
|
]
|
|
179
179
|
},
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"description": "Reindex configuration.",
|
|
182
182
|
"allOf": [
|
|
183
183
|
{
|
|
184
|
-
"$ref": "#/definitions/
|
|
184
|
+
"$ref": "#/definitions/__schema61"
|
|
185
185
|
}
|
|
186
186
|
]
|
|
187
187
|
},
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"description": "Named Qdrant filter patterns for skill-activated behaviors.",
|
|
190
190
|
"allOf": [
|
|
191
191
|
{
|
|
192
|
-
"$ref": "#/definitions/
|
|
192
|
+
"$ref": "#/definitions/__schema62"
|
|
193
193
|
}
|
|
194
194
|
]
|
|
195
195
|
},
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
"description": "Search configuration including score thresholds.",
|
|
198
198
|
"allOf": [
|
|
199
199
|
{
|
|
200
|
-
"$ref": "#/definitions/
|
|
200
|
+
"$ref": "#/definitions/__schema63"
|
|
201
201
|
}
|
|
202
202
|
]
|
|
203
203
|
},
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
"description": "Logging configuration.",
|
|
206
206
|
"allOf": [
|
|
207
207
|
{
|
|
208
|
-
"$ref": "#/definitions/
|
|
208
|
+
"$ref": "#/definitions/__schema64"
|
|
209
209
|
}
|
|
210
210
|
]
|
|
211
211
|
},
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"description": "Timeout in milliseconds for graceful shutdown.",
|
|
214
214
|
"allOf": [
|
|
215
215
|
{
|
|
216
|
-
"$ref": "#/definitions/
|
|
216
|
+
"$ref": "#/definitions/__schema67"
|
|
217
217
|
}
|
|
218
218
|
]
|
|
219
219
|
},
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
|
|
222
222
|
"allOf": [
|
|
223
223
|
{
|
|
224
|
-
"$ref": "#/definitions/
|
|
224
|
+
"$ref": "#/definitions/__schema68"
|
|
225
225
|
}
|
|
226
226
|
]
|
|
227
227
|
},
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
|
|
230
230
|
"allOf": [
|
|
231
231
|
{
|
|
232
|
-
"$ref": "#/definitions/
|
|
232
|
+
"$ref": "#/definitions/__schema69"
|
|
233
233
|
}
|
|
234
234
|
]
|
|
235
235
|
}
|
|
@@ -264,112 +264,128 @@
|
|
|
264
264
|
"type": "object",
|
|
265
265
|
"properties": {
|
|
266
266
|
"type": {
|
|
267
|
-
"
|
|
268
|
-
"
|
|
267
|
+
"description": "JSON Schema type (always \"object\" for schema definitions).",
|
|
268
|
+
"allOf": [
|
|
269
|
+
{
|
|
270
|
+
"$ref": "#/definitions/__schema3"
|
|
271
|
+
}
|
|
272
|
+
]
|
|
269
273
|
},
|
|
270
274
|
"properties": {
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
"propertyNames": {
|
|
278
|
-
"type": "string"
|
|
279
|
-
},
|
|
280
|
-
"additionalProperties": {}
|
|
281
|
-
}
|
|
275
|
+
"description": "Map of property names to JSON Schema property definitions.",
|
|
276
|
+
"allOf": [
|
|
277
|
+
{
|
|
278
|
+
"$ref": "#/definitions/__schema4"
|
|
279
|
+
}
|
|
280
|
+
]
|
|
282
281
|
}
|
|
283
282
|
}
|
|
284
283
|
},
|
|
285
284
|
"__schema3": {
|
|
285
|
+
"type": "string",
|
|
286
|
+
"const": "object"
|
|
287
|
+
},
|
|
288
|
+
"__schema4": {
|
|
289
|
+
"type": "object",
|
|
290
|
+
"propertyNames": {
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
"additionalProperties": {
|
|
294
|
+
"type": "object",
|
|
295
|
+
"propertyNames": {
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
"additionalProperties": {}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"__schema5": {
|
|
286
302
|
"minItems": 1,
|
|
287
303
|
"type": "array",
|
|
288
304
|
"items": {
|
|
289
|
-
"$ref": "#/definitions/
|
|
305
|
+
"$ref": "#/definitions/__schema6"
|
|
290
306
|
},
|
|
291
307
|
"description": "Glob patterns for files to watch (e.g., \"**/*.md\"). At least one required."
|
|
292
308
|
},
|
|
293
|
-
"
|
|
309
|
+
"__schema6": {
|
|
294
310
|
"type": "string"
|
|
295
311
|
},
|
|
296
|
-
"
|
|
312
|
+
"__schema7": {
|
|
297
313
|
"description": "Glob patterns to exclude from watching (e.g., \"**/node_modules/**\").",
|
|
298
314
|
"allOf": [
|
|
299
315
|
{
|
|
300
|
-
"$ref": "#/definitions/
|
|
316
|
+
"$ref": "#/definitions/__schema8"
|
|
301
317
|
}
|
|
302
318
|
]
|
|
303
319
|
},
|
|
304
|
-
"
|
|
320
|
+
"__schema8": {
|
|
305
321
|
"type": "array",
|
|
306
322
|
"items": {
|
|
307
323
|
"type": "string"
|
|
308
324
|
}
|
|
309
325
|
},
|
|
310
|
-
"
|
|
326
|
+
"__schema9": {
|
|
311
327
|
"description": "Polling interval in milliseconds when usePolling is enabled.",
|
|
312
328
|
"allOf": [
|
|
313
329
|
{
|
|
314
|
-
"$ref": "#/definitions/
|
|
330
|
+
"$ref": "#/definitions/__schema10"
|
|
315
331
|
}
|
|
316
332
|
]
|
|
317
333
|
},
|
|
318
|
-
"
|
|
334
|
+
"__schema10": {
|
|
319
335
|
"type": "number"
|
|
320
336
|
},
|
|
321
|
-
"
|
|
337
|
+
"__schema11": {
|
|
322
338
|
"description": "Use polling instead of native file system events (for network drives).",
|
|
323
339
|
"allOf": [
|
|
324
340
|
{
|
|
325
|
-
"$ref": "#/definitions/
|
|
341
|
+
"$ref": "#/definitions/__schema12"
|
|
326
342
|
}
|
|
327
343
|
]
|
|
328
344
|
},
|
|
329
|
-
"
|
|
345
|
+
"__schema12": {
|
|
330
346
|
"type": "boolean"
|
|
331
347
|
},
|
|
332
|
-
"
|
|
348
|
+
"__schema13": {
|
|
333
349
|
"description": "Debounce delay in milliseconds for file change events.",
|
|
334
350
|
"allOf": [
|
|
335
351
|
{
|
|
336
|
-
"$ref": "#/definitions/
|
|
352
|
+
"$ref": "#/definitions/__schema14"
|
|
337
353
|
}
|
|
338
354
|
]
|
|
339
355
|
},
|
|
340
|
-
"
|
|
356
|
+
"__schema14": {
|
|
341
357
|
"type": "number"
|
|
342
358
|
},
|
|
343
|
-
"
|
|
359
|
+
"__schema15": {
|
|
344
360
|
"description": "Time in milliseconds a file must remain unchanged before processing.",
|
|
345
361
|
"allOf": [
|
|
346
362
|
{
|
|
347
|
-
"$ref": "#/definitions/
|
|
363
|
+
"$ref": "#/definitions/__schema16"
|
|
348
364
|
}
|
|
349
365
|
]
|
|
350
366
|
},
|
|
351
|
-
"
|
|
367
|
+
"__schema16": {
|
|
352
368
|
"type": "number"
|
|
353
369
|
},
|
|
354
|
-
"
|
|
370
|
+
"__schema17": {
|
|
355
371
|
"description": "Skip files ignored by .gitignore in git repositories. Only applies to repos with a .git directory. Default: true.",
|
|
356
372
|
"allOf": [
|
|
357
373
|
{
|
|
358
|
-
"$ref": "#/definitions/
|
|
374
|
+
"$ref": "#/definitions/__schema18"
|
|
359
375
|
}
|
|
360
376
|
]
|
|
361
377
|
},
|
|
362
|
-
"
|
|
378
|
+
"__schema18": {
|
|
363
379
|
"type": "boolean"
|
|
364
380
|
},
|
|
365
|
-
"
|
|
381
|
+
"__schema19": {
|
|
366
382
|
"type": "object",
|
|
367
383
|
"properties": {
|
|
368
384
|
"enabled": {
|
|
369
385
|
"description": "Enable automatic reloading when config file changes.",
|
|
370
386
|
"allOf": [
|
|
371
387
|
{
|
|
372
|
-
"$ref": "#/definitions/
|
|
388
|
+
"$ref": "#/definitions/__schema20"
|
|
373
389
|
}
|
|
374
390
|
]
|
|
375
391
|
},
|
|
@@ -377,7 +393,7 @@
|
|
|
377
393
|
"description": "Debounce delay in milliseconds for config file change detection.",
|
|
378
394
|
"allOf": [
|
|
379
395
|
{
|
|
380
|
-
"$ref": "#/definitions/
|
|
396
|
+
"$ref": "#/definitions/__schema21"
|
|
381
397
|
}
|
|
382
398
|
]
|
|
383
399
|
},
|
|
@@ -385,40 +401,35 @@
|
|
|
385
401
|
"description": "Reindex scope triggered on config change. Default: issues.",
|
|
386
402
|
"allOf": [
|
|
387
403
|
{
|
|
388
|
-
"$ref": "#/definitions/
|
|
404
|
+
"$ref": "#/definitions/__schema22"
|
|
389
405
|
}
|
|
390
406
|
]
|
|
391
407
|
}
|
|
392
408
|
}
|
|
393
409
|
},
|
|
394
|
-
"
|
|
410
|
+
"__schema20": {
|
|
395
411
|
"type": "boolean"
|
|
396
412
|
},
|
|
397
|
-
"
|
|
413
|
+
"__schema21": {
|
|
398
414
|
"type": "number"
|
|
399
415
|
},
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"enum": [
|
|
403
|
-
"issues",
|
|
404
|
-
"full"
|
|
405
|
-
]
|
|
406
|
-
},
|
|
407
|
-
"__schema21": {
|
|
408
|
-
"default": "gemini",
|
|
409
|
-
"description": "Embedding provider name (e.g., \"gemini\", \"openai\").",
|
|
410
|
-
"allOf": [
|
|
416
|
+
"__schema22": {
|
|
417
|
+
"anyOf": [
|
|
411
418
|
{
|
|
412
|
-
"
|
|
419
|
+
"type": "string",
|
|
420
|
+
"const": "issues",
|
|
421
|
+
"description": "Re-process only files with recorded issues."
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"type": "string",
|
|
425
|
+
"const": "full",
|
|
426
|
+
"description": "Full reindex of all watched files."
|
|
413
427
|
}
|
|
414
428
|
]
|
|
415
429
|
},
|
|
416
|
-
"__schema22": {
|
|
417
|
-
"type": "string"
|
|
418
|
-
},
|
|
419
430
|
"__schema23": {
|
|
420
|
-
"default": "gemini
|
|
421
|
-
"description": "Embedding
|
|
431
|
+
"default": "gemini",
|
|
432
|
+
"description": "Embedding provider name (e.g., \"gemini\", \"openai\").",
|
|
422
433
|
"allOf": [
|
|
423
434
|
{
|
|
424
435
|
"$ref": "#/definitions/__schema24"
|
|
@@ -429,7 +440,8 @@
|
|
|
429
440
|
"type": "string"
|
|
430
441
|
},
|
|
431
442
|
"__schema25": {
|
|
432
|
-
"
|
|
443
|
+
"default": "gemini-embedding-001",
|
|
444
|
+
"description": "Embedding model identifier (e.g., \"gemini-embedding-001\", \"text-embedding-3-small\").",
|
|
433
445
|
"allOf": [
|
|
434
446
|
{
|
|
435
447
|
"$ref": "#/definitions/__schema26"
|
|
@@ -437,10 +449,10 @@
|
|
|
437
449
|
]
|
|
438
450
|
},
|
|
439
451
|
"__schema26": {
|
|
440
|
-
"type": "
|
|
452
|
+
"type": "string"
|
|
441
453
|
},
|
|
442
454
|
"__schema27": {
|
|
443
|
-
"description": "
|
|
455
|
+
"description": "Maximum chunk size in characters for text splitting.",
|
|
444
456
|
"allOf": [
|
|
445
457
|
{
|
|
446
458
|
"$ref": "#/definitions/__schema28"
|
|
@@ -451,7 +463,7 @@
|
|
|
451
463
|
"type": "number"
|
|
452
464
|
},
|
|
453
465
|
"__schema29": {
|
|
454
|
-
"description": "
|
|
466
|
+
"description": "Character overlap between consecutive chunks.",
|
|
455
467
|
"allOf": [
|
|
456
468
|
{
|
|
457
469
|
"$ref": "#/definitions/__schema30"
|
|
@@ -462,7 +474,7 @@
|
|
|
462
474
|
"type": "number"
|
|
463
475
|
},
|
|
464
476
|
"__schema31": {
|
|
465
|
-
"description": "
|
|
477
|
+
"description": "Embedding vector dimensions (must match model output).",
|
|
466
478
|
"allOf": [
|
|
467
479
|
{
|
|
468
480
|
"$ref": "#/definitions/__schema32"
|
|
@@ -470,10 +482,10 @@
|
|
|
470
482
|
]
|
|
471
483
|
},
|
|
472
484
|
"__schema32": {
|
|
473
|
-
"type": "
|
|
485
|
+
"type": "number"
|
|
474
486
|
},
|
|
475
487
|
"__schema33": {
|
|
476
|
-
"description": "
|
|
488
|
+
"description": "API key for embedding provider (supports ${ENV_VAR} substitution).",
|
|
477
489
|
"allOf": [
|
|
478
490
|
{
|
|
479
491
|
"$ref": "#/definitions/__schema34"
|
|
@@ -481,10 +493,10 @@
|
|
|
481
493
|
]
|
|
482
494
|
},
|
|
483
495
|
"__schema34": {
|
|
484
|
-
"type": "
|
|
496
|
+
"type": "string"
|
|
485
497
|
},
|
|
486
498
|
"__schema35": {
|
|
487
|
-
"description": "Maximum
|
|
499
|
+
"description": "Maximum embedding API requests per minute (rate limiting).",
|
|
488
500
|
"allOf": [
|
|
489
501
|
{
|
|
490
502
|
"$ref": "#/definitions/__schema36"
|
|
@@ -495,35 +507,46 @@
|
|
|
495
507
|
"type": "number"
|
|
496
508
|
},
|
|
497
509
|
"__schema37": {
|
|
510
|
+
"description": "Maximum concurrent embedding requests.",
|
|
511
|
+
"allOf": [
|
|
512
|
+
{
|
|
513
|
+
"$ref": "#/definitions/__schema38"
|
|
514
|
+
}
|
|
515
|
+
]
|
|
516
|
+
},
|
|
517
|
+
"__schema38": {
|
|
518
|
+
"type": "number"
|
|
519
|
+
},
|
|
520
|
+
"__schema39": {
|
|
498
521
|
"type": "string",
|
|
499
522
|
"description": "Qdrant server URL (e.g., \"http://localhost:6333\")."
|
|
500
523
|
},
|
|
501
|
-
"
|
|
524
|
+
"__schema40": {
|
|
502
525
|
"type": "string",
|
|
503
526
|
"description": "Qdrant collection name for vector storage."
|
|
504
527
|
},
|
|
505
|
-
"
|
|
528
|
+
"__schema41": {
|
|
506
529
|
"description": "Qdrant API key for authentication (supports ${ENV_VAR} substitution).",
|
|
507
530
|
"allOf": [
|
|
508
531
|
{
|
|
509
|
-
"$ref": "#/definitions/
|
|
532
|
+
"$ref": "#/definitions/__schema42"
|
|
510
533
|
}
|
|
511
534
|
]
|
|
512
535
|
},
|
|
513
|
-
"
|
|
536
|
+
"__schema42": {
|
|
514
537
|
"type": "string"
|
|
515
538
|
},
|
|
516
|
-
"
|
|
539
|
+
"__schema43": {
|
|
517
540
|
"type": "string"
|
|
518
541
|
},
|
|
519
|
-
"
|
|
542
|
+
"__schema44": {
|
|
520
543
|
"type": "object",
|
|
521
544
|
"properties": {
|
|
522
545
|
"host": {
|
|
523
546
|
"description": "Host address for API server (e.g., \"127.0.0.1\", \"0.0.0.0\").",
|
|
524
547
|
"allOf": [
|
|
525
548
|
{
|
|
526
|
-
"$ref": "#/definitions/
|
|
549
|
+
"$ref": "#/definitions/__schema45"
|
|
527
550
|
}
|
|
528
551
|
]
|
|
529
552
|
},
|
|
@@ -531,29 +554,29 @@
|
|
|
531
554
|
"description": "Port for API server (e.g., 3456).",
|
|
532
555
|
"allOf": [
|
|
533
556
|
{
|
|
534
|
-
"$ref": "#/definitions/
|
|
557
|
+
"$ref": "#/definitions/__schema46"
|
|
535
558
|
}
|
|
536
559
|
]
|
|
537
560
|
}
|
|
538
561
|
}
|
|
539
562
|
},
|
|
540
|
-
"
|
|
563
|
+
"__schema45": {
|
|
541
564
|
"type": "string"
|
|
542
565
|
},
|
|
543
|
-
"
|
|
566
|
+
"__schema46": {
|
|
544
567
|
"type": "number"
|
|
545
568
|
},
|
|
546
|
-
"
|
|
569
|
+
"__schema47": {
|
|
547
570
|
"type": "object",
|
|
548
571
|
"propertyNames": {
|
|
549
572
|
"type": "string"
|
|
550
573
|
},
|
|
551
574
|
"additionalProperties": {}
|
|
552
575
|
},
|
|
553
|
-
"
|
|
576
|
+
"__schema48": {
|
|
554
577
|
"type": "string"
|
|
555
578
|
},
|
|
556
|
-
"
|
|
579
|
+
"__schema49": {
|
|
557
580
|
"type": "array",
|
|
558
581
|
"items": {
|
|
559
582
|
"type": "object",
|
|
@@ -571,10 +594,10 @@
|
|
|
571
594
|
"match": {
|
|
572
595
|
"type": "object",
|
|
573
596
|
"propertyNames": {
|
|
574
|
-
"$ref": "#/definitions/
|
|
597
|
+
"$ref": "#/definitions/__schema50"
|
|
575
598
|
},
|
|
576
599
|
"additionalProperties": {
|
|
577
|
-
"$ref": "#/definitions/
|
|
600
|
+
"$ref": "#/definitions/__schema51"
|
|
578
601
|
},
|
|
579
602
|
"description": "JSON Schema object to match against file attributes."
|
|
580
603
|
},
|
|
@@ -582,7 +605,7 @@
|
|
|
582
605
|
"description": "Array of schema references (named schema refs or inline objects) merged left-to-right.",
|
|
583
606
|
"allOf": [
|
|
584
607
|
{
|
|
585
|
-
"$ref": "#/definitions/
|
|
608
|
+
"$ref": "#/definitions/__schema52"
|
|
586
609
|
}
|
|
587
610
|
]
|
|
588
611
|
},
|
|
@@ -590,7 +613,7 @@
|
|
|
590
613
|
"description": "JsonMap transformation (inline definition, named map reference, or .json file path).",
|
|
591
614
|
"allOf": [
|
|
592
615
|
{
|
|
593
|
-
"$ref": "#/definitions/
|
|
616
|
+
"$ref": "#/definitions/__schema53"
|
|
594
617
|
}
|
|
595
618
|
]
|
|
596
619
|
},
|
|
@@ -598,7 +621,7 @@
|
|
|
598
621
|
"description": "Handlebars content template (inline string, named ref, or .hbs/.handlebars file path).",
|
|
599
622
|
"allOf": [
|
|
600
623
|
{
|
|
601
|
-
"$ref": "#/definitions/
|
|
624
|
+
"$ref": "#/definitions/__schema56"
|
|
602
625
|
}
|
|
603
626
|
]
|
|
604
627
|
}
|
|
@@ -610,11 +633,11 @@
|
|
|
610
633
|
]
|
|
611
634
|
}
|
|
612
635
|
},
|
|
613
|
-
"
|
|
636
|
+
"__schema50": {
|
|
614
637
|
"type": "string"
|
|
615
638
|
},
|
|
616
|
-
"
|
|
617
|
-
"
|
|
639
|
+
"__schema51": {},
|
|
640
|
+
"__schema52": {
|
|
618
641
|
"type": "array",
|
|
619
642
|
"items": {
|
|
620
643
|
"anyOf": [
|
|
@@ -628,17 +651,17 @@
|
|
|
628
651
|
]
|
|
629
652
|
}
|
|
630
653
|
},
|
|
631
|
-
"
|
|
654
|
+
"__schema53": {
|
|
632
655
|
"anyOf": [
|
|
633
656
|
{
|
|
634
|
-
"$ref": "#/definitions/
|
|
657
|
+
"$ref": "#/definitions/__schema54"
|
|
635
658
|
},
|
|
636
659
|
{
|
|
637
660
|
"type": "string"
|
|
638
661
|
}
|
|
639
662
|
]
|
|
640
663
|
},
|
|
641
|
-
"
|
|
664
|
+
"__schema54": {
|
|
642
665
|
"anyOf": [
|
|
643
666
|
{
|
|
644
667
|
"anyOf": [
|
|
@@ -664,7 +687,7 @@
|
|
|
664
687
|
"additionalProperties": {
|
|
665
688
|
"anyOf": [
|
|
666
689
|
{
|
|
667
|
-
"$ref": "#/definitions/
|
|
690
|
+
"$ref": "#/definitions/__schema54"
|
|
668
691
|
},
|
|
669
692
|
{
|
|
670
693
|
"type": "object",
|
|
@@ -672,12 +695,12 @@
|
|
|
672
695
|
"$": {
|
|
673
696
|
"anyOf": [
|
|
674
697
|
{
|
|
675
|
-
"$ref": "#/definitions/
|
|
698
|
+
"$ref": "#/definitions/__schema55"
|
|
676
699
|
},
|
|
677
700
|
{
|
|
678
701
|
"type": "array",
|
|
679
702
|
"items": {
|
|
680
|
-
"$ref": "#/definitions/
|
|
703
|
+
"$ref": "#/definitions/__schema55"
|
|
681
704
|
}
|
|
682
705
|
}
|
|
683
706
|
]
|
|
@@ -693,12 +716,12 @@
|
|
|
693
716
|
{
|
|
694
717
|
"type": "array",
|
|
695
718
|
"items": {
|
|
696
|
-
"$ref": "#/definitions/
|
|
719
|
+
"$ref": "#/definitions/__schema54"
|
|
697
720
|
}
|
|
698
721
|
}
|
|
699
722
|
]
|
|
700
723
|
},
|
|
701
|
-
"
|
|
724
|
+
"__schema55": {
|
|
702
725
|
"type": "object",
|
|
703
726
|
"properties": {
|
|
704
727
|
"method": {
|
|
@@ -723,10 +746,10 @@
|
|
|
723
746
|
"params"
|
|
724
747
|
]
|
|
725
748
|
},
|
|
726
|
-
"
|
|
749
|
+
"__schema56": {
|
|
727
750
|
"type": "string"
|
|
728
751
|
},
|
|
729
|
-
"
|
|
752
|
+
"__schema57": {
|
|
730
753
|
"type": "object",
|
|
731
754
|
"propertyNames": {
|
|
732
755
|
"type": "string"
|
|
@@ -734,7 +757,7 @@
|
|
|
734
757
|
"additionalProperties": {
|
|
735
758
|
"anyOf": [
|
|
736
759
|
{
|
|
737
|
-
"$ref": "#/definitions/
|
|
760
|
+
"$ref": "#/definitions/__schema54"
|
|
738
761
|
},
|
|
739
762
|
{
|
|
740
763
|
"type": "string"
|
|
@@ -745,7 +768,7 @@
|
|
|
745
768
|
"map": {
|
|
746
769
|
"anyOf": [
|
|
747
770
|
{
|
|
748
|
-
"$ref": "#/definitions/
|
|
771
|
+
"$ref": "#/definitions/__schema54"
|
|
749
772
|
},
|
|
750
773
|
{
|
|
751
774
|
"type": "string"
|
|
@@ -763,7 +786,7 @@
|
|
|
763
786
|
]
|
|
764
787
|
}
|
|
765
788
|
},
|
|
766
|
-
"
|
|
789
|
+
"__schema58": {
|
|
767
790
|
"type": "object",
|
|
768
791
|
"propertyNames": {
|
|
769
792
|
"type": "string"
|
|
@@ -790,7 +813,7 @@
|
|
|
790
813
|
]
|
|
791
814
|
}
|
|
792
815
|
},
|
|
793
|
-
"
|
|
816
|
+
"__schema59": {
|
|
794
817
|
"type": "object",
|
|
795
818
|
"propertyNames": {
|
|
796
819
|
"type": "string"
|
|
@@ -810,7 +833,7 @@
|
|
|
810
833
|
]
|
|
811
834
|
}
|
|
812
835
|
},
|
|
813
|
-
"
|
|
836
|
+
"__schema60": {
|
|
814
837
|
"type": "object",
|
|
815
838
|
"propertyNames": {
|
|
816
839
|
"type": "string"
|
|
@@ -830,7 +853,7 @@
|
|
|
830
853
|
]
|
|
831
854
|
}
|
|
832
855
|
},
|
|
833
|
-
"
|
|
856
|
+
"__schema61": {
|
|
834
857
|
"type": "object",
|
|
835
858
|
"properties": {
|
|
836
859
|
"callbackUrl": {
|
|
@@ -839,14 +862,14 @@
|
|
|
839
862
|
}
|
|
840
863
|
}
|
|
841
864
|
},
|
|
842
|
-
"
|
|
865
|
+
"__schema62": {
|
|
843
866
|
"type": "object",
|
|
844
867
|
"propertyNames": {
|
|
845
868
|
"type": "string"
|
|
846
869
|
},
|
|
847
870
|
"additionalProperties": {}
|
|
848
871
|
},
|
|
849
|
-
"
|
|
872
|
+
"__schema63": {
|
|
850
873
|
"type": "object",
|
|
851
874
|
"properties": {
|
|
852
875
|
"scoreThresholds": {
|
|
@@ -876,14 +899,14 @@
|
|
|
876
899
|
}
|
|
877
900
|
}
|
|
878
901
|
},
|
|
879
|
-
"
|
|
902
|
+
"__schema64": {
|
|
880
903
|
"type": "object",
|
|
881
904
|
"properties": {
|
|
882
905
|
"level": {
|
|
883
906
|
"description": "Logging level (trace, debug, info, warn, error, fatal).",
|
|
884
907
|
"allOf": [
|
|
885
908
|
{
|
|
886
|
-
"$ref": "#/definitions/
|
|
909
|
+
"$ref": "#/definitions/__schema65"
|
|
887
910
|
}
|
|
888
911
|
]
|
|
889
912
|
},
|
|
@@ -891,25 +914,25 @@
|
|
|
891
914
|
"description": "Path to log file (logs to stdout if omitted).",
|
|
892
915
|
"allOf": [
|
|
893
916
|
{
|
|
894
|
-
"$ref": "#/definitions/
|
|
917
|
+
"$ref": "#/definitions/__schema66"
|
|
895
918
|
}
|
|
896
919
|
]
|
|
897
920
|
}
|
|
898
921
|
}
|
|
899
922
|
},
|
|
900
|
-
"
|
|
923
|
+
"__schema65": {
|
|
901
924
|
"type": "string"
|
|
902
925
|
},
|
|
903
|
-
"
|
|
926
|
+
"__schema66": {
|
|
904
927
|
"type": "string"
|
|
905
928
|
},
|
|
906
|
-
"
|
|
929
|
+
"__schema67": {
|
|
907
930
|
"type": "number"
|
|
908
931
|
},
|
|
909
|
-
"
|
|
932
|
+
"__schema68": {
|
|
910
933
|
"type": "number"
|
|
911
934
|
},
|
|
912
|
-
"
|
|
935
|
+
"__schema69": {
|
|
913
936
|
"type": "number"
|
|
914
937
|
}
|
|
915
938
|
}
|