login-to-render / app.py
hysts's picture
hysts HF staff
Update
c5b2981
raw
history blame contribute delete
170 Bytes
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
text = gr.Textbox()
btn = gr.Button()
if __name__ == "__main__":
demo.queue().launch()