mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Gracefully report back if horde bans anonymous generation
This commit is contained in:
@@ -9694,6 +9694,14 @@ def text2img_horde(prompt: str) -> Optional[Image.Image]:
|
|||||||
id_req = requests.post("https://stablehorde.net/api/v2/generate/async", json=final_submit_dict, headers=cluster_headers)
|
id_req = requests.post("https://stablehorde.net/api/v2/generate/async", json=final_submit_dict, headers=cluster_headers)
|
||||||
|
|
||||||
if not id_req.ok:
|
if not id_req.ok:
|
||||||
|
if id_req.status_code == 403:
|
||||||
|
show_error_notification(
|
||||||
|
"Stable Horde failure",
|
||||||
|
"Stable Horde is currently not accepting anonymous requuests. " \
|
||||||
|
"Try again in a few minutes or register for priority access at https://stablehorde.net",
|
||||||
|
do_log=True
|
||||||
|
)
|
||||||
|
return None
|
||||||
logger.error(f"HTTP {id_req.status_code}, expected OK-ish")
|
logger.error(f"HTTP {id_req.status_code}, expected OK-ish")
|
||||||
logger.error(id_req.text)
|
logger.error(id_req.text)
|
||||||
logger.error(f"Response headers: {id_req.headers}")
|
logger.error(f"Response headers: {id_req.headers}")
|
||||||
|
Reference in New Issue
Block a user