| import gradio as gr | |
| import os | |
| DESCRIPTION = """ | |
| # audio sep | |
| being made | |
| [](https://discord.gg/osai) | |
| """ | |
| theme = gr.themes.Base( | |
| font=[gr.themes.GoogleFont('Libre Franklin'), gr.themes.GoogleFont('Public Sans'), 'system-ui', 'sans-serif'], | |
| ) | |
| with gr.Blocks(css="footer{display:none !important}", theme=theme) as demo: | |
| gr.Markdown(DESCRIPTION) | |
| gr.DuplicateButton( | |
| value="Duplicate Space for private use", | |
| elem_id="duplicate-button", | |
| visible=os.getenv("SHOW_DUPLICATE_BUTTON") == "1", | |
| ) | |
| demo.queue(max_size=20, api_open=False).launch(show_api=False) | |