File size: 396 Bytes
b00d2c6
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()