Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -40,15 +40,20 @@ def generate_audio(prompt):
|
|
40 |
# π Hot Prompt Club UI
|
41 |
gr.Interface(
|
42 |
fn=generate_audio,
|
43 |
-
inputs=gr.Textbox(
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
description="Enter a fun sound idea for music art.",
|
47 |
examples=[
|
48 |
"ghosts peeing in a server room",
|
49 |
-
"
|
50 |
-
"
|
51 |
-
"AI doing acid jazz fusion in a technofeudalist dystopia",
|
52 |
-
"modular slomecore"
|
53 |
]
|
54 |
).launch()
|
|
|
|
40 |
# π Hot Prompt Club UI
|
41 |
gr.Interface(
|
42 |
fn=generate_audio,
|
43 |
+
inputs=gr.Textbox(
|
44 |
+
label="π€ Prompt your sonic art here",
|
45 |
+
placeholder="e.g. 'drunk driving with mario and yung lean'"
|
46 |
+
),
|
47 |
+
outputs=gr.Audio(
|
48 |
+
type="filepath",
|
49 |
+
label="π§ Generated Audio"
|
50 |
+
),
|
51 |
+
title='π Hot Prompts in Your Area: "My Husband Is Dead"',
|
52 |
description="Enter a fun sound idea for music art.",
|
53 |
examples=[
|
54 |
"ghosts peeing in a server room",
|
55 |
+
"tech startup boss villain entrance music",
|
56 |
+
"AI doing acid in a technofeudalist dystopia"
|
|
|
|
|
57 |
]
|
58 |
).launch()
|
59 |
+
|