vilarin commited on
Commit
d60fa03
1 Parent(s): 981e263

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -68,7 +68,7 @@ async def generate_image(
68
  num_inference_steps=steps,
69
  model=basemodel,
70
  )
71
-
72
  image2 = await client.text_to_image(
73
  prompt=text,
74
  height=height,
@@ -77,6 +77,7 @@ async def generate_image(
77
  num_inference_steps=steps,
78
  model=model,
79
  )
 
80
 
81
  return image1, image2, seed
82
 
 
68
  num_inference_steps=steps,
69
  model=basemodel,
70
  )
71
+ print(image1)
72
  image2 = await client.text_to_image(
73
  prompt=text,
74
  height=height,
 
77
  num_inference_steps=steps,
78
  model=model,
79
  )
80
+ print(image2)
81
 
82
  return image1, image2, seed
83