@vivantel/virage-cli 0.1.64 → 0.1.66
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/README.md +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ virage init # interactive wizard: selects embedder, vector store, agents; inst
|
|
|
18
18
|
virage index # index the codebase
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
`virage init` installs all required plugins (embedder, vector store, re-ranker, agent plugins) to either `~/.virage/plugins` (global) or `$PROJECT_DIR/.virage/plugins` (local). Installed versions are recorded in `virage.config.json` under `pluginVersions`.
|
|
21
|
+
`virage init` installs all required plugins (embedder, vector store, re-ranker, chunker, and agent plugins) to either `~/.virage/plugins` (global) or `$PROJECT_DIR/.virage/plugins` (local). Installed versions are recorded in `virage.config.json` under `pluginVersions`.
|
|
22
22
|
|
|
23
23
|
## Plugin management
|
|
24
24
|
|
|
@@ -127,6 +127,8 @@ All configuration lives in `virage.config.json`. The `$schema` field enables IDE
|
|
|
127
127
|
"pluginVersions": {
|
|
128
128
|
"@vivantel/virage-embedder-transformers": "0.2.36",
|
|
129
129
|
"@vivantel/virage-store-lancedb": "0.2.36",
|
|
130
|
+
"@vivantel/virage-reranker-cross-encoder": "0.1.8",
|
|
131
|
+
"@vivantel/virage-code-chunk-chunker": "0.1.19",
|
|
130
132
|
"@vivantel/virage-agent-claude": "0.2.24"
|
|
131
133
|
}
|
|
132
134
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vivantel/virage-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.66",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for the Virage RAG pipeline — provides the virage command",
|
|
6
6
|
"repository": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@inquirer/prompts": "^8.5.2",
|
|
54
54
|
"@vivantel/virage-agent-claude": "0.2.24",
|
|
55
|
-
"@vivantel/virage-core": "0.2.
|
|
55
|
+
"@vivantel/virage-core": "0.2.36",
|
|
56
56
|
"@vivantel/virage-skills": "0.1.8",
|
|
57
57
|
"chokidar": "^5.0.0",
|
|
58
58
|
"cli-progress": "^3.12.0",
|