Compare commits
No commits in common. "5e014f50a5c755ccda1658f2a5fd562c1769608f" and "6d2b043ecaa9ebb8279fde5b994b8918db803fb6" have entirely different histories.
5e014f50a5
...
6d2b043eca
@ -140,8 +140,8 @@ class OllamaGenerator:
|
|||||||
)
|
)
|
||||||
return response["message"]["content"]
|
return response["message"]["content"]
|
||||||
|
|
||||||
# Retry mechanism with 60-minute timeout (bumped for large context models)
|
# Retry mechanism with 30-minute timeout (same as the original)
|
||||||
timeout_seconds = 60 * 60
|
timeout_seconds = 30 * 60
|
||||||
max_retries = 3
|
max_retries = 3
|
||||||
|
|
||||||
for attempt in range(max_retries):
|
for attempt in range(max_retries):
|
||||||
|
|||||||
@ -102,7 +102,7 @@ class OllamaWebSearchTool(BaseTool):
|
|||||||
"Authorization": f"Bearer {api_key}",
|
"Authorization": f"Bearer {api_key}",
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
},
|
},
|
||||||
timeout=60.0,
|
timeout=30.0,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Raise for HTTP errors so we can catch them with specific messages
|
# Raise for HTTP errors so we can catch them with specific messages
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user