Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
IP-Adapter-Playground
like
19
Sleeping
App
Files
Files
Community
d8ca99b
IP-Adapter-Playground
/
app.py
tonyassi
Create app.py
d8ca99b
verified
7 months ago
raw
Copy download link
history
blame
Safe
235 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
with
gr.Tab(
"Text-to-Image"
):
gr.Image(
"lion.jpg"
)
gr.Button(
"New Lion"
)
with
gr.Tab(
"Image-to-Image"
):
gr.Image(
"tiger.jpg"
)
gr.Button(
"New Tiger"
)