nock2 commited on
Commit
aa89711
Β·
verified Β·
1 Parent(s): 1767b4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -7
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(label="🎀 Prompt your sonic art here", placeholder="e.g. 'drunk driving with mario and yung lean'"),
44
- outputs=gr.Audio(type="filepath", label="🧠 Generated Audio"),
45
- title='🌐 Hot Prompts in Your Area: "My Husband Is Dead"'
 
 
 
 
 
 
46
  description="Enter a fun sound idea for music art.",
47
  examples=[
48
  "ghosts peeing in a server room",
49
- "ethereal reggaeton at 141 bpm",
50
- "startup boss villain entrance music",
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
+