aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2026-03-09 12:30:30 +0100
committerAlexander Potapenko <glider@google.com>2026-03-09 15:11:02 +0000
commit0bd2cd434805ad8cc1e7b854025fa1d2e1a192cb (patch)
treef2abc85e835e00992b1a0bd162262a7edbcf126c /pkg
parent76b12d267b188a48c2ed19406fbfcb11821699c7 (diff)
pkg/aflow/flow/repro: add `read-description` to the flow
Teach the repro flow about the `read-description` tool. Update #6878
Diffstat (limited to 'pkg')
-rw-r--r--pkg/aflow/flow/repro/repro.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/aflow/flow/repro/repro.go b/pkg/aflow/flow/repro/repro.go
index c6795a13b..8d3926de8 100644
--- a/pkg/aflow/flow/repro/repro.go
+++ b/pkg/aflow/flow/repro/repro.go
@@ -41,10 +41,13 @@ func init() {
Outputs: aflow.LLMOutputs[struct {
ReproOpts string `jsonschema:"The repro configuration options."`
}](),
+ Tools: aflow.Tools(
+ syzlang.ReadDescription,
+ syzlang.Reproduce,
+ ),
TaskType: aflow.FormalReasoningTask,
Instruction: reproInstruction,
Prompt: reproPrompt,
- Tools: aflow.Tools(syzlang.Reproduce),
},
),
},