From 0a9fb0d5e4eff152524e470b1fda08da96308695 Mon Sep 17 00:00:00 2001 From: drbaph <84208527+Saganaki22@users.noreply.github.com> Date: Sat, 8 Jun 2024 00:17:12 +0100 Subject: [PATCH] Update gradio_app.py --- gradio_app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gradio_app.py b/gradio_app.py index e89330d..ee34a65 100644 --- a/gradio_app.py +++ b/gradio_app.py @@ -107,7 +107,6 @@ def audio_generator(prompt, sampler_type, steps, cfg_scale, sigma_min, sigma_max # Create Gradio interface with gr.Blocks() as demo: gr.Markdown("

💀🔊 StableAudioWebUI 💀🔊

") - gr.Markdown("

Github Repository

") # Main input components prompt_textbox = gr.Textbox(lines=5, label="Prompt") @@ -147,5 +146,8 @@ with gr.Blocks() as demo: inputs=[prompt_textbox, sampler_dropdown, steps_slider, cfg_scale_slider, sigma_min_slider, sigma_max_slider, generation_time_slider, seed_slider, model_half_checkbox], outputs=[audio_output, output_textbox]) + # GitHub link at the bottom + gr.Markdown("

Github Repository

") + # Launch the Gradio demo demo.launch()