ScratchGPT / app.py
SFP's picture
Update app.py
b188fbd verified
raw
history blame
170 Bytes
import gradio as gr
import main
def update(name):
return f"liven"
with gr.Blocks() as demo:
btn = gr.Button("keep alive")
btn.click(fn=update)
demo.launch()