Skip to content

Commit 462c9e2

Browse files
christsoclaude
andcommitted
fix: remove deprecated workspace_template from mock target configs
The workspace_template field was removed from target definitions. These mock targets relied on it but the eval files already define workspace.template at the eval level. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6cb8228 commit 462c9e2

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

examples/features/file-changes-graders/.agentv/targets.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ targets:
88
printf "export function add(a: number, b: number): number {\n return a + b;\n}\n\nexport function subtract(a: number, b: number): number {\n return a - b;\n}\n" > src/calculator.ts &&
99
echo "Added subtract function to calculator.ts" > {OUTPUT_FILE}
1010
'
11-
workspace_template: ../workspace-template
1211
grader_target: azure_grader
1312

1413
# Azure OpenAI — used as LLM grader (rubrics) and built-in llm-grader provider

examples/features/file-changes/.agentv/targets.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ targets:
1313
rm obsolete.log &&
1414
echo "Done: edited 2 files, created 2 files, deleted 1 file." > {OUTPUT_FILE}
1515
'
16-
workspace_template: ../workspace-template

examples/features/functional-grading/.agentv/targets.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ targets:
88
printf "export function add(a: number, b: number): number {\n return a + b;\n}\n\nexport function multiply(a: number, b: number): number {\n return a * b;\n}\n\nexport function fibonacci(n: number): number {\n if (n <= 1) return n;\n let a = 0, b = 1;\n for (let i = 2; i <= n; i++) {\n const tmp = a + b;\n a = b;\n b = tmp;\n }\n return b;\n}\n" > src/index.ts &&
99
echo "Implemented add, multiply, and fibonacci functions." > {OUTPUT_FILE}
1010
'
11-
workspace_template: ../workspace-template

0 commit comments

Comments
 (0)