@agentv/eval 3.13.3 → 3.14.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 +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ For complete documentation including:
|
|
|
57
57
|
- Execution metrics usage
|
|
58
58
|
- Best practices
|
|
59
59
|
|
|
60
|
-
See the [Custom Evaluators Guide](../../plugins/agentv-dev/skills/agentv-eval-
|
|
60
|
+
See the [Custom Evaluators Guide](../../plugins/agentv-dev/skills/agentv-eval-writer/references/custom-evaluators.md) or run AgentV's `/agentv-eval-builder` skill.
|
|
61
61
|
|
|
62
62
|
## Repository
|
|
63
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentv/eval",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
4
4
|
"description": "Evaluation SDK for AgentV - build custom code judges",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -30,7 +30,10 @@
|
|
|
30
30
|
"fix": "biome check --write .",
|
|
31
31
|
"test": "bun test"
|
|
32
32
|
},
|
|
33
|
-
"files": [
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
34
37
|
"dependencies": {
|
|
35
38
|
"zod": "^3.23.8"
|
|
36
39
|
}
|