@vera-ai/cli 0.9.7 → 0.9.9
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 +4 -1
- package/bin/vera.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,9 @@ vera search "authentication middleware"
|
|
|
25
25
|
vera index . --onnx-jina-cpu
|
|
26
26
|
vera search "error handling" --onnx-jina-cpu
|
|
27
27
|
|
|
28
|
+
# Optional local CodeRankEmbed preset
|
|
29
|
+
vera setup --code-rank-embed --onnx-jina-cuda
|
|
30
|
+
|
|
28
31
|
# GPU acceleration (NVIDIA/AMD/DirectML/CoreML/OpenVINO)
|
|
29
32
|
vera index . --onnx-jina-cuda
|
|
30
33
|
|
|
@@ -44,4 +47,4 @@ vera upgrade
|
|
|
44
47
|
- **Cross-encoder reranking** for precision
|
|
45
48
|
- **Markdown codeblock output** by default with file paths, line ranges, and optional symbol info (use `--json` for compact JSON, `--raw` for verbose output, `--timing` for step durations)
|
|
46
49
|
|
|
47
|
-
For full documentation, see the [GitHub repo](https://github.com/lemon07r/Vera).
|
|
50
|
+
For full documentation, including custom local ONNX embedding models and manual install steps, see the [GitHub repo](https://github.com/lemon07r/Vera).
|
package/bin/vera.js
CHANGED
|
@@ -229,7 +229,7 @@ async function extractArchive(archivePath, destination) {
|
|
|
229
229
|
runChecked("powershell", [
|
|
230
230
|
"-NoProfile",
|
|
231
231
|
"-Command",
|
|
232
|
-
"Expand-Archive",
|
|
232
|
+
"Import-Module Microsoft.PowerShell.Archive; Expand-Archive",
|
|
233
233
|
"-LiteralPath",
|
|
234
234
|
archivePath,
|
|
235
235
|
"-DestinationPath",
|