You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/web/src/content/docs/docs/evaluation/running-evals.mdx
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ sidebar:
11
11
agentv eval evals/my-eval.yaml
12
12
```
13
13
14
-
Results are written to `.agentv/results/runs/<timestamp>/index.jsonl`. Each line is a JSON object with one result per test case, and the run workspace also stores the manifest and related artifacts.
14
+
Results are written to `.agentv/results/runs/<timestamp>/index.jsonl`. Each line is a JSON object with one result per test case, and the run workspace also stores the manifest and related artifacts. Use this generated run folder as the portable audit surface: copy or sync the run directory, not a hand-authored parallel bundle.
`--output` is a run directory, not a file path. The canonical manifest is always
90
90
`<output>/index.jsonl`.
91
91
92
+
### Generated Task Bundles
93
+
94
+
Each result can also include a generated task bundle inside its per-test artifact
95
+
directory. The bundle captures the eval slice and target settings that produced
96
+
that row, so reviewers and rerun tooling can inspect the exact run-local source
97
+
instead of relying on a mutable checkout.
98
+
99
+
Typical layout:
100
+
101
+
```text
102
+
my-results/
103
+
index.jsonl
104
+
benchmark.json
105
+
<test-id>/
106
+
grading.json
107
+
timing.json
108
+
input.md
109
+
outputs/response.md
110
+
task/
111
+
EVAL.yaml
112
+
targets.yaml
113
+
files/ # copied input files when the case references them
114
+
graders/ # copied grader prompt/script files when applicable
115
+
```
116
+
117
+
The `index.jsonl` row links to these generated paths with snake_case fields such
118
+
as `artifact_dir`, `task_dir`, `eval_path`, `targets_path`, `files_path`, and
119
+
`graders_path`. Treat those paths as relative to the run directory. When you need
120
+
a portable artifact for audit, review, Dashboard inspection, or rerun workflows,
121
+
share the generated run directory and its `index.jsonl` manifest. Source-side
122
+
case directories are still useful for organizing bulky prompts, fixtures, or
123
+
tests while authoring an eval, but they are optional input organization rather
124
+
than a separate artifact schema.
125
+
92
126
### Export Additional Formats
93
127
94
128
Write additional output files alongside the artifact directory. Format is inferred from the file extension (`.jsonl`, `.json`, `.xml`, `.yaml`, `.html`):
Copy file name to clipboardExpand all lines: apps/web/src/content/docs/docs/tools/dashboard.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ You can also set the same field globally in `$AGENTV_HOME/config.yaml` or `~/.ag
86
86
87
87
## Run Detail
88
88
89
-
Click any run to see a breakdown by suite, per-test scores, target, duration, and cost. The source label (`local` or `remote`) tells you where the run came from.
89
+
Click any run to see a breakdown by suite, per-test scores, target, duration, and cost. The source label (`local` or `remote`) tells you where the run came from. Files and source views resolve against the generated run artifacts referenced by `index.jsonl`—including per-result task bundles when present—so Dashboard does not require authors to create a separate source-side bundle structure.
90
90
91
91
<Image src={studioRunDetail} alt="AgentV Dashboard run detail showing 100% pass rate across 5 tests with scores and duration" />
This is useful when a manifest needs to be materialized into a predictable artifact tree for other tooling, review, or archiving.
72
+
This is useful when a manifest needs to be materialized into a predictable artifact tree for other tooling, review, or archiving. The run workspace is also where generated task bundles live: `index.jsonl` rows may point to per-result `task_dir`, `eval_path`, `targets_path`, `files_path`, and `graders_path` entries. Keep those generated artifacts with the run when sharing or auditing results.
0 commit comments