Spaces:
Sleeping
Sleeping
corrección de índices de tupplas
Browse files
app.py
CHANGED
@@ -31,8 +31,8 @@ def predict(prompt):
|
|
31 |
)
|
32 |
|
33 |
# Assuming result is a dictionary with keys 'image' and 'seed'
|
34 |
-
image = result[
|
35 |
-
seed = result[
|
36 |
|
37 |
return image, seed
|
38 |
|
|
|
31 |
)
|
32 |
|
33 |
# Assuming result is a dictionary with keys 'image' and 'seed'
|
34 |
+
image = result[0]
|
35 |
+
seed = result[1]
|
36 |
|
37 |
return image, seed
|
38 |
|