Update app.py
Browse files
app.py
CHANGED
@@ -134,7 +134,7 @@ def query(prompt, is_negative=False, model="1", gpt=True, steps=30, cfg_scale=7,
|
|
134 |
"negative_prompt": is_negative
|
135 |
}
|
136 |
|
137 |
-
response = requests.post(f"{api_base}{API_URL}", headers=headers, json=payload)
|
138 |
if response.status_code != 200:
|
139 |
print(f"Ошибка: Не удалось получить изображение. Статус ответа: {response.status_code}")
|
140 |
print(f"Содержимое ответа: {response.text}")
|
|
|
134 |
"negative_prompt": is_negative
|
135 |
}
|
136 |
|
137 |
+
response = requests.post(f"{api_base}{API_URL}", headers=headers, json=payload, timeout=120)
|
138 |
if response.status_code != 200:
|
139 |
print(f"Ошибка: Не удалось получить изображение. Статус ответа: {response.status_code}")
|
140 |
print(f"Содержимое ответа: {response.text}")
|