diff --git a/src/crewai/cli/provider.py b/src/crewai/cli/provider.py index 4bfeb9324..529ca5e26 100644 --- a/src/crewai/cli/provider.py +++ b/src/crewai/cli/provider.py @@ -164,7 +164,7 @@ def fetch_provider_data(cache_file): - dict or None: The fetched provider data or None if the operation fails. """ try: - response = requests.get(JSON_URL, stream=True, timeout=10) + response = requests.get(JSON_URL, stream=True, timeout=60) response.raise_for_status() data = download_data(response) with open(cache_file, "w") as f: