fix(distill): increase HTTP client timeout 30s→120s for LLM calls

This commit is contained in:
xiaowei 2026-06-11 10:39:07 +08:00
parent c3db6ffe30
commit 90c43c0717
1 changed files with 1 additions and 1 deletions

View File

@ -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},
}
}