From 29e8319cfddcf6d8b990782e632a17367e546527 Mon Sep 17 00:00:00 2001 From: danieldd <113032234+Danieldd28@users.noreply.github.com> Date: Mon, 16 Feb 2026 20:33:29 +0700 Subject: [PATCH] Update pkg/tools/browser.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pkg/tools/browser.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/tools/browser.go b/pkg/tools/browser.go index 0f9badabc..f9e4977a1 100644 --- a/pkg/tools/browser.go +++ b/pkg/tools/browser.go @@ -78,11 +78,10 @@ func truncateOutput(s string, max int) string { // BrowserSearchTool wraps `actionbook search` to find action manuals. type BrowserSearchTool struct { - headless bool } -func NewBrowserSearchTool(headless bool) *BrowserSearchTool { - return &BrowserSearchTool{headless: headless} +func NewBrowserSearchTool() *BrowserSearchTool { + return &BrowserSearchTool{} } func (t *BrowserSearchTool) Name() string { return "browser_search" }