Spaces:
Runtime error
Runtime error
Commit
Β·
23f602c
1
Parent(s):
3d7fefb
Added exception handling on line 66
Browse files
app.py
CHANGED
@@ -67,15 +67,18 @@ def transform_ncuda(img,prompt,cfg=8.0,stps=30,sc=0.8):
|
|
67 |
print('----------------------------------------------------------------------------------')
|
68 |
print(f'{resp}')
|
69 |
print(f'DEBUG: Type = {resp.__class__}')
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
|
|
|
|
79 |
# img2.save(str(artifact.seed)+ "-img2img.png") # Save our generated image with its seed number as the filename and the img2img suffix so that we know this is our transformed image.
|
80 |
|
81 |
|
|
|
67 |
print('----------------------------------------------------------------------------------')
|
68 |
print(f'{resp}')
|
69 |
print(f'DEBUG: Type = {resp.__class__}')
|
70 |
+
try:
|
71 |
+
for artifact in resp.artifacts:
|
72 |
+
if artifact.finish_reason == generation.FILTER:
|
73 |
+
warnings.warn(
|
74 |
+
"Your request activated the API's safety filters and could not be processed."
|
75 |
+
"Please modify the prompt and try again.")
|
76 |
+
if artifact.type == generation.ARTIFACT_IMAGE:
|
77 |
+
global img2
|
78 |
+
img2 = Image.open(io.BytesIO(artifact.binary))
|
79 |
+
return img2
|
80 |
+
except Exception as e:
|
81 |
+
print(f'Caught error: {e}')
|
82 |
# img2.save(str(artifact.seed)+ "-img2img.png") # Save our generated image with its seed number as the filename and the img2img suffix so that we know this is our transformed image.
|
83 |
|
84 |
|