From 0bd2cd434805ad8cc1e7b854025fa1d2e1a192cb Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Mon, 9 Mar 2026 12:30:30 +0100 Subject: pkg/aflow/flow/repro: add `read-description` to the flow Teach the repro flow about the `read-description` tool. Update #6878 --- pkg/aflow/flow/repro/repro.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pkg') 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), }, ), }, -- cgit mrf-deployment