@vera-ai/cli 0.4.0 → 0.6.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/README.md +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Code search for AI agents. Vera indexes your codebase using tree-sitter parsing
|
|
|
4
4
|
|
|
5
5
|
This package downloads and wraps the native Vera binary for your platform.
|
|
6
6
|
|
|
7
|
+
Current benchmark snapshot: on Vera's local 21-task, 4-repo release benchmark, `v0.6.0` reaches `1.0` Recall@5, `1.0` Recall@10, `1.0` MRR@10, and `0.9832` nDCG@10 with the local Jina CUDA ONNX stack. Full details live in the main repo docs.
|
|
8
|
+
|
|
7
9
|
## Install
|
|
8
10
|
|
|
9
11
|
```bash
|
|
@@ -19,7 +21,7 @@ vera index .
|
|
|
19
21
|
# Search
|
|
20
22
|
vera search "authentication middleware"
|
|
21
23
|
|
|
22
|
-
# Local ONNX inference (no API keys needed
|
|
24
|
+
# Local ONNX inference (no API keys needed. downloads models automatically)
|
|
23
25
|
vera index . --onnx-jina-cpu
|
|
24
26
|
vera search "error handling" --onnx-jina-cpu
|
|
25
27
|
|