test-jpg / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
b7a4079 verified
raw
history blame
166 Bytes
import gradio as gr
with gr.Blocks() as demo:
t = gr.Textbox()
i = gr.Image(type="filepath")
t.submit(lambda : "cheetah.jpg", None, i)
demo.launch()