Spaces:
Sleeping
Sleeping
#!/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() | |