Lisandro commited on
Commit
53b359f
·
1 Parent(s): f48ecfa

corrección de índices de tupplas

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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["image"]
35
- seed = result["seed"]
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