Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ title = """
|
|
97 |
</h1>
|
98 |
</div>
|
99 |
<p style="margin-bottom: 10px;font-size: 94%;font-weight: 200;line-height: 1.5em;">
|
100 |
-
YOU MUST TYPE "rage_()" AS THE PROMPT
|
101 |
</p>
|
102 |
</div>
|
103 |
"""
|
@@ -195,7 +195,7 @@ with gr.Blocks(css=css) as demo:
|
|
195 |
|
196 |
gr.HTML(title)
|
197 |
|
198 |
-
prompt_input = "rage_()"
|
199 |
audio_input = gr.Audio(source="upload", type="filepath", visible=False)
|
200 |
with gr.Row():
|
201 |
negative_prompt = gr.Textbox(label="Negative prompt")
|
|
|
97 |
</h1>
|
98 |
</div>
|
99 |
<p style="margin-bottom: 10px;font-size: 94%;font-weight: 200;line-height: 1.5em;">
|
100 |
+
YOU MUST TYPE "rage_()" AS THE PROMPT OR YOU WILL ONLY GET NOISE
|
101 |
</p>
|
102 |
</div>
|
103 |
"""
|
|
|
195 |
|
196 |
gr.HTML(title)
|
197 |
|
198 |
+
prompt_input = gr.Textbox(placeholder="YOU MUST TYPE rage_() AS THE PROMPT OR YOU WILL ONLY GET NOISE", label="Musical prompt", elem_id="prompt-in")
|
199 |
audio_input = gr.Audio(source="upload", type="filepath", visible=False)
|
200 |
with gr.Row():
|
201 |
negative_prompt = gr.Textbox(label="Negative prompt")
|