fix(confidence-engine): extend reconstruction chat timeout

This commit is contained in:
2026-09-06 06:16:36 +01:00
parent 7070342fb1
commit 726746f22d
3 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ class OllamaLlmProvider {
if (chatSupported) {
try {
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), 60000);
const timeout = setTimeout(() => controller.abort(), 300000); // 5 min for reconstruction
apiUsed = "/api/chat";
providerExecution.chatRequestAttempted = true;