hysts's picture
hysts HF staff
Update
fc494ea
raw
history blame contribute delete
No virus
374 Bytes
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
image = gr.Image(label="image", height=300)
prompt = gr.Textbox(label="prompt")
gr.Examples(
examples=[
["https://huggingface.co/Adapter/t2iadapter/resolve/main/figs_SDXLV1.0/org_sketch.png", "aaaa"],
],
inputs=[image, prompt],
)
demo.queue().launch()