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: README.md
+14-4Lines changed: 14 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,9 +88,13 @@ evaluate_options:
88
88
89
89
default_test: file://./default-test.yaml
90
90
91
+
prompts:
92
+
- "{{ input }}"
93
+
91
94
tests:
92
95
- id: fizzbuzz
93
-
input: Write FizzBuzz in Python. Use lowercase output strings "fizz", "buzz", and "fizzbuzz". Return only one Python code block.
96
+
vars:
97
+
input: Write FizzBuzz in Python. Use lowercase output strings "fizz", "buzz", and "fizzbuzz". Return only one Python code block.
94
98
assert:
95
99
- type: contains
96
100
value: "fizz"
@@ -135,9 +139,13 @@ evaluate_options:
135
139
default_test:
136
140
threshold: 0.85
137
141
142
+
prompts:
143
+
- "{{ input }}"
144
+
138
145
tests:
139
146
- id: fizzbuzz
140
-
input: Write FizzBuzz in Python
147
+
vars:
148
+
input: Write FizzBuzz in Python
141
149
```
142
150
143
151
`target: local-openai` resolves the configured target id from `.agentv/config.yaml` and uses its provider, model, hooks, and provider settings. The object form above defines a full eval-local target and must include enough provider configuration to run. AgentV records the resolved target information in run artifacts so results can be audited and replayed. The `tags.experiment` label stays `with-skills` because the condition is unchanged; the model/provider variation belongs to the resolved target metadata.
0 commit comments