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()