fix(distill): increase HTTP client timeout 30s→120s for LLM calls
This commit is contained in:
parent
c3db6ffe30
commit
90c43c0717
|
|
@ -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},
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue