viberag 0.6.0 → 0.6.2
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.
|
@@ -397,6 +397,7 @@ export function InitWizard({ step, config, isReinit, existingApiKeyId, existingP
|
|
|
397
397
|
const seen = new Set();
|
|
398
398
|
if (hasExistingKeyForProvider && existingApiKeyId) {
|
|
399
399
|
items.push({
|
|
400
|
+
key: `existing:${existingApiKeyId}`,
|
|
400
401
|
label: 'Keep current key',
|
|
401
402
|
value: { kind: 'existing', keyId: existingApiKeyId },
|
|
402
403
|
});
|
|
@@ -406,12 +407,14 @@ export function InitWizard({ step, config, isReinit, existingApiKeyId, existingP
|
|
|
406
407
|
if (seen.has(key.id))
|
|
407
408
|
continue;
|
|
408
409
|
items.push({
|
|
410
|
+
key: `existing:${key.id}`,
|
|
409
411
|
label: `${key.label} (${key.preview})`,
|
|
410
412
|
value: { kind: 'existing', keyId: key.id },
|
|
411
413
|
});
|
|
412
414
|
seen.add(key.id);
|
|
413
415
|
}
|
|
414
416
|
items.push({
|
|
417
|
+
key: 'new',
|
|
415
418
|
label: 'Add new API key',
|
|
416
419
|
value: { kind: 'new' },
|
|
417
420
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "viberag",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Local code RAG for AI coding assistants - semantic search via MCP server",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"keywords": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"type": "module",
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=20.0.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"preinstall": "node scripts/check-node-version.js",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"chokidar": "^5.0.0",
|
|
80
80
|
"cli-highlight": "^2.1.11",
|
|
81
81
|
"fast-glob": "^3.3.3",
|
|
82
|
-
"fastmcp": "
|
|
82
|
+
"fastmcp": "3.26.7",
|
|
83
83
|
"ignore": "^7.0.5",
|
|
84
84
|
"ink": "^6.6.0",
|
|
85
85
|
"ink-big-text": "^2.0.0",
|