From 0b2581cbf6efb99afde19de98ac01a0f711ad931 Mon Sep 17 00:00:00 2001 From: stevef Date: Mon, 20 Apr 2026 07:38:35 +0200 Subject: [PATCH] feat: increase default LLM request timeout to 120s --- pkg/providers/common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/providers/common/common.go b/pkg/providers/common/common.go index 2e137e6b1..90142fb8b 100644 --- a/pkg/providers/common/common.go +++ b/pkg/providers/common/common.go @@ -36,7 +36,7 @@ type ( ReasoningDetail = protocoltypes.ReasoningDetail ) -const DefaultRequestTimeout = 30 * time.Second +const DefaultRequestTimeout = 120 * time.Second // NewHTTPClient creates an *http.Client with an optional proxy and the default timeout. func NewHTTPClient(proxy string) *http.Client {