Spaces:
Sleeping
Sleeping
commit
Browse files
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(
|
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(
|
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 |
|