From 90c43c0717e99b3ee58c3eee547238fd623d16bc Mon Sep 17 00:00:00 2001 From: xiaowei Date: Thu, 11 Jun 2026 10:39:07 +0800 Subject: [PATCH] =?UTF-8?q?fix(distill):=20increase=20HTTP=20client=20time?= =?UTF-8?q?out=2030s=E2=86=92120s=20for=20LLM=20calls?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go/internal/distill/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/internal/distill/engine.go b/go/internal/distill/engine.go index c0f7dba..ddfd266 100644 --- a/go/internal/distill/engine.go +++ b/go/internal/distill/engine.go @@ -120,7 +120,7 @@ func NewEngine(llmEndpoint, llmModel, apiKey string) *Engine { batchSize: 10, batchTimeout: 5 * time.Minute, dailyLimit: 5000, - client: &http.Client{Timeout: 30 * time.Second}, + client: &http.Client{Timeout: 120 * time.Second}, } }