Rooni commited on
Commit
227d5b9
1 Parent(s): c710472

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -5
app.py CHANGED
@@ -75,11 +75,20 @@ def query(prompt, model, is_negative=False, steps=30, cfg_scale=7, sampler="DPM+
75
  "seed": seed if seed != -1 else random.randint(1, 1000000000)
76
  }
77
 
78
- image_bytes = requests.post(API_URL, headers=headers, json=payload, timeout=timeout).content
79
- image = Image.open(io.BytesIO(image_bytes))
80
- print(f'\033[1mГенерация {key} завершена!\033[0m ({prompt})')
81
- return image
82
-
 
 
 
 
 
 
 
 
 
83
 
84
  css = """
85
  * {}
 
75
  "seed": seed if seed != -1 else random.randint(1, 1000000000)
76
  }
77
 
78
+ response = requests.post(API_URL, headers=headers, json=payload, timeout=timeout)
79
+ if response.status_code != 200:
80
+ print(f"Ошибка: Не удалось получить изображение. Статус ответа: {response.status_code}")
81
+ print(f"Содержимое ответа: {response.text}")
82
+ return None
83
+
84
+ try:
85
+ image_bytes = response.content
86
+ image = Image.open(io.BytesIO(image_bytes))
87
+ print(f'\033[1mГенерация {key} завершена!\033[0m ({prompt})')
88
+ return image
89
+ except Exception as e:
90
+ print(f"Ошибка при попытке открыть изображение: {e}")
91
+ return None
92
 
93
  css = """
94
  * {}