gradio-5-test / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
877dd0d verified
raw
history blame
143 Bytes
import gradio as gr
def test():
return "Hello"
with gr.Blocks() as demo:
t = gr.Textbox()
demo.load(test, None, t)
demo.launch()