diff --git a/claudetool/browse/browse.go b/claudetool/browse/browse.go index 79674f29be62f47eca2fcc070489c7f80bc0e3ca..bfa241ee570b0bd261a2d16ce8a1f15af6b69dd8 100644 --- a/claudetool/browse/browse.go +++ b/claudetool/browse/browse.go @@ -67,7 +67,7 @@ func NewBrowseTools(ctx context.Context, idleTimeout time.Duration, maxImageDime consoleLogs: make([]*runtime.EventConsoleAPICalled, 0), maxConsoleLogs: 100, maxImageDimension: maxImageDimension, - idleTimeout: idleTimeout, + idleTimeout: idleTimeout, } } diff --git a/llm/imageutil/resize_test.go b/llm/imageutil/resize_test.go index df27b9d0f430e486c3d31c3f54ba133c0c15962f..af2a673dab6b1c813b9d4d58bc99bda4443cc1a2 100644 --- a/llm/imageutil/resize_test.go +++ b/llm/imageutil/resize_test.go @@ -24,12 +24,12 @@ func createTestPNG(t *testing.T, width, height int) []byte { func TestResizeImage(t *testing.T) { tests := []struct { - name string - width int - height int - maxDim int - wantResize bool - wantMaxDim int + name string + width int + height int + maxDim int + wantResize bool + wantMaxDim int }{ {"small image", 800, 600, 2000, false, 800}, {"at limit", 2000, 2000, 2000, false, 2000},