change timeout
Some checks failed
AI Reviewer / review (pull_request) Failing after 10m30s

This commit is contained in:
2026-02-02 20:38:38 +00:00
parent 27af18a734
commit 2aa3e7cddf

View File

@@ -17,7 +17,7 @@ class OllamaClient:
"stream": False,
"options": {"temperature": 0},
}
with httpx.Client(timeout=60) as client:
with httpx.Client(timeout=600) as client:
response = client.post(url, json=payload)
response.raise_for_status()
data = response.json()