yaron123 commited on
Commit
75961cb
·
1 Parent(s): 0ace111
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -612,7 +612,7 @@ def add_song_cover_text(img,artist,song):
612
  return img
613
 
614
  @spaces.GPU(duration=240)
615
- def all_pipes(img,pos,neg,artist,song):
616
  imgs = pipe_generate_image(pos,neg)
617
 
618
  names = []
@@ -645,7 +645,7 @@ def handle_generate(artist,song,genre,lyrics):
645
  Negative: {neg}
646
  """)
647
 
648
- return all_pipes(img,pos,neg,pos_artist,pos_song)
649
 
650
  # entry
651
 
 
612
  return img
613
 
614
  @spaces.GPU(duration=240)
615
+ def all_pipes(pos,neg,artist,song):
616
  imgs = pipe_generate_image(pos,neg)
617
 
618
  names = []
 
645
  Negative: {neg}
646
  """)
647
 
648
+ return all_pipes(pos,neg,pos_artist,pos_song)
649
 
650
  # entry
651