diff --git a/src/ai_reviewer/ollama.py b/src/ai_reviewer/ollama.py index 6fed18f..7b4bcc9 100644 --- a/src/ai_reviewer/ollama.py +++ b/src/ai_reviewer/ollama.py @@ -17,7 +17,7 @@ class OllamaClient: "stream": False, "options": {"temperature": 0}, } - with httpx.Client(timeout=600) as client: + with httpx.Client(timeout=3600) as client: response = client.post(url, json=payload) response.raise_for_status() data = response.json()