From 401e94d3e433487518871d798957e3bbf2a47157 Mon Sep 17 00:00:00 2001 From: Rodin Date: Fri, 1 May 2026 13:00:36 -0700 Subject: [PATCH] fix: increase LLM client timeout to 5 minutes GPT-5-mini timed out on larger diffs (2min was too short). LLM calls for code review with full file context can take 2-4min. --- llm/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm/client.go b/llm/client.go index af7f313..6067925 100644 --- a/llm/client.go +++ b/llm/client.go @@ -27,7 +27,7 @@ func NewClient(baseURL, apiKey, model string) *Client { baseURL: strings.TrimRight(baseURL, "/"), apiKey: apiKey, model: model, - http: &http.Client{Timeout: 2 * time.Minute}, + http: &http.Client{Timeout: 5 * time.Minute}, } }