abidlabs's picture
abidlabs HF Staff
Update app.py
1e62c55 verified
raw
history blame
145 Bytes
import gradio as gr
def test():
return "Hello"
with gr.Blocks() as demo:
t = gr.Textbox()
demo.launch(test, None, t)
demo.launch()