Update app.py
Browse files
app.py
CHANGED
@@ -79,7 +79,8 @@ def generate(input=DEFAULT_INPUT, negative_input=DEFAULT_NEGATIVE_INPUT, height=
|
|
79 |
|
80 |
images = model(**parameters).images
|
81 |
image_paths = [save_image(img) for img in images]
|
82 |
-
|
|
|
83 |
|
84 |
def cloud():
|
85 |
print("[CLOUD] | Space maintained.")
|
|
|
79 |
|
80 |
images = model(**parameters).images
|
81 |
image_paths = [save_image(img) for img in images]
|
82 |
+
print(image_paths)
|
83 |
+
return image_paths
|
84 |
|
85 |
def cloud():
|
86 |
print("[CLOUD] | Space maintained.")
|