artificialguybr
commited on
Commit
•
68c1454
1
Parent(s):
ddde7e5
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ import requests
|
|
3 |
import os
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
|
|
|
|
6 |
|
7 |
# Definindo as informações do repositório e a trigger word
|
8 |
repo = "artificialguybr/StudioGhibli.Redmond-V2"
|
@@ -24,19 +26,35 @@ def generate_image(prompt):
|
|
24 |
},
|
25 |
}
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
# Criando a interface do Gradio
|
42 |
iface = gr.Interface(
|
|
|
3 |
import os
|
4 |
from PIL import Image
|
5 |
from io import BytesIO
|
6 |
+
from tqdm import tqdm
|
7 |
+
import time
|
8 |
|
9 |
# Definindo as informações do repositório e a trigger word
|
10 |
repo = "artificialguybr/StudioGhibli.Redmond-V2"
|
|
|
26 |
},
|
27 |
}
|
28 |
|
29 |
+
error_count = 0
|
30 |
+
pbar = tqdm(total=None, desc="Loading model")
|
31 |
+
while True:
|
32 |
+
try:
|
33 |
+
response = requests.post(api_url, headers=headers, json=payload)
|
34 |
+
if response.status_code == 200:
|
35 |
+
image_data = response.json().get("data", [])[0] # Obtém os dados da imagem
|
36 |
+
return Image.open(BytesIO(image_data))
|
37 |
+
elif response.status_code == 503:
|
38 |
+
# 503 é quando o modelo está em inicialização
|
39 |
+
time.sleep(1)
|
40 |
+
pbar.update(1)
|
41 |
+
elif response.status_code == 500 and error_count < 5:
|
42 |
+
# Erro interno do servidor, tenta novamente até 5 vezes
|
43 |
+
time.sleep(1)
|
44 |
+
error_count += 1
|
45 |
+
else:
|
46 |
+
raise Exception(f"API Error: {response.status_code}")
|
47 |
+
except requests.exceptions.HTTPError as http_err:
|
48 |
+
print(f"HTTP error occurred: {http_err}")
|
49 |
+
except requests.exceptions.RequestException as err:
|
50 |
+
print(f"An error occurred: {err}")
|
51 |
+
except requests.exceptions.JSONDecodeError as json_err:
|
52 |
+
print(f"JSON decode error: {json_err}")
|
53 |
+
# Se a resposta não for JSON, tenta carregar a imagem diretamente
|
54 |
+
return Image.open(BytesIO(response.content))
|
55 |
+
except Exception as e:
|
56 |
+
print(f"An unexpected error occurred: {e}")
|
57 |
+
break # Sai do loop se um erro inesperado ocorrer
|
58 |
|
59 |
# Criando a interface do Gradio
|
60 |
iface = gr.Interface(
|