From 8fb0f8fb04f74e0c849fb8e2ae236419ceae6fcf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Jan 2026 11:58:39 +0100 Subject: pkg/aflow/tool/researcher: add researching LLM tool It can answer complex questions about kernel, and provide a concise answer to other LLMs. --- pkg/aflow/flow/patching/patching.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg/aflow/flow/patching') diff --git a/pkg/aflow/flow/patching/patching.go b/pkg/aflow/flow/patching/patching.go index ab3394f4e..a0b8d4a6c 100644 --- a/pkg/aflow/flow/patching/patching.go +++ b/pkg/aflow/flow/patching/patching.go @@ -10,6 +10,7 @@ import ( "github.com/google/syzkaller/pkg/aflow/action/crash" "github.com/google/syzkaller/pkg/aflow/action/kernel" "github.com/google/syzkaller/pkg/aflow/ai" + "github.com/google/syzkaller/pkg/aflow/tool/codeexpert" "github.com/google/syzkaller/pkg/aflow/tool/codesearcher" ) @@ -38,7 +39,7 @@ type Outputs struct { } func init() { - tools := codesearcher.Tools + tools := append([]aflow.Tool{codeexpert.Tool}, codesearcher.Tools...) aflow.Register[Inputs, Outputs]( ai.WorkflowPatching, -- cgit mrf-deployment