Spaces:
Running
Running
import gradio as gr | |
def launch_bot(): | |
return "The Movie Provider Bot is running in the background. Interact via Telegram." | |
with gr.Blocks() as demo: | |
gr.Markdown("# π¬ TheMovieProviderBot Interface") | |
gr.Markdown("Interact with the bot on Telegram.") | |
gr.File(label="π¦ Download Bot Files", value="static/setup.zip") | |
gr.Button("Start Bot").click(launch_bot) | |
demo.launch() | |