tony-assi-lora / app.py
tonyassi's picture
Update app.py
36771cf verified
raw
history blame
268 Bytes
import gradio as gr
def generate(prompt):
return None
with gr.Blocks() as demo:
gr.Markdown("# Tony Assi")
img = gr.Image()
textbox = gr.Textbox()
button = gr.Button("Run")
button.click(fn=generate, inputs=img, outputs=textbox)
demo.launch()