diff --git a/tradingagents/llm_clients/copilot_client.py b/tradingagents/llm_clients/copilot_client.py index fb9db988..845b9f4b 100644 --- a/tradingagents/llm_clients/copilot_client.py +++ b/tradingagents/llm_clients/copilot_client.py @@ -110,7 +110,7 @@ def check_copilot_auth() -> bool: timeout=5, ) return resp.status_code == 200 - except Exception: + except requests.exceptions.RequestException: return True # Network error — accept optimistically