agentv 0.18.0 → 0.20.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/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runCli
4
- } from "./chunk-PHILDJ3W.js";
4
+ } from "./chunk-N7M3URIJ.js";
5
5
  import "./chunk-UE4GLFVL.js";
6
6
 
7
7
  // src/cli.ts
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\r\nimport { runCli } from \"./index.js\";\r\n\r\nvoid runCli();\r\n"],"mappings":";;;;;;;AAGA,KAAK,OAAO;","names":[]}
1
+ {"version":3,"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { runCli } from './index.js';\n\nvoid runCli();\n"],"mappings":";;;;;;;AAGA,KAAK,OAAO;","names":[]}
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createProgram,
3
3
  runCli
4
- } from "./chunk-PHILDJ3W.js";
4
+ } from "./chunk-N7M3URIJ.js";
5
5
  import "./chunk-UE4GLFVL.js";
6
6
  export {
7
7
  createProgram,
@@ -11,7 +11,7 @@ description: Create and maintain AgentV YAML evaluation files for testing AI age
11
11
  - Examples: `references/example-evals.md`
12
12
 
13
13
  ## Structure Requirements
14
- - Root level: `$schema` (required: "agentv-eval-v2"), `description` (optional), `execution` (optional), `evalcases` (required)
14
+ - Root level: `description` (optional), `execution` (optional), `evalcases` (required)
15
15
  - Eval case fields: `id` (required), `outcome` (required), `input_messages` (required), `expected_messages` (required)
16
16
  - Optional fields: `conversation_id`, `note`, `execution`
17
17
  - Message fields: `role` (required), `content` (required)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentv",
3
- "version": "0.18.0",
3
+ "version": "0.20.0",
4
4
  "description": "CLI entry point for AgentV",
5
5
  "type": "module",
6
6
  "repository": {
@@ -14,10 +14,7 @@
14
14
  "bin": {
15
15
  "agentv": "./dist/cli.js"
16
16
  },
17
- "files": [
18
- "dist",
19
- "README.md"
20
- ],
17
+ "files": ["dist", "README.md"],
21
18
  "scripts": {
22
19
  "dev": "bun --watch src/index.ts",
23
20
  "build": "tsup && bun run copy-readme",
@@ -32,7 +29,7 @@
32
29
  "test:coverage": "vitest run --coverage"
33
30
  },
34
31
  "dependencies": {
35
- "@agentv/core": "0.17.0",
32
+ "@agentv/core": "0.19.0",
36
33
  "commander": "^12.1.0",
37
34
  "fast-glob": "^3.3.3",
38
35
  "dotenv": "^16.4.5",