summaryrefslogtreecommitdiffstats
path: root/g4f/requests/raise_for_status.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--g4f/requests/raise_for_status.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/g4f/requests/raise_for_status.py b/g4f/requests/raise_for_status.py
index 0e91505e..1699d9a4 100644
--- a/g4f/requests/raise_for_status.py
+++ b/g4f/requests/raise_for_status.py
@@ -11,6 +11,8 @@ class CloudflareError(ResponseStatusError):
...
def is_cloudflare(text: str) -> bool:
+ if "<title>Attention Required! | Cloudflare</title>" in text:
+ return True
return '<div id="cf-please-wait">' in text or "<title>Just a moment...</title>" in text
def is_openai(text: str) -> bool: