Zornes12's picture
Create app.py
4c77626 verified
raw
history blame contribute delete
425 Bytes
import gradio as gr
def replace_background(image, prompt):
# Placeholder function – returns the same image for now
return image
demo = gr.Interface(
fn=replace_background,
inputs=[
gr.Image(type="pil", label="Upload an Image"),
gr.Textbox(label="Describe New Background")
],
outputs=gr.Image(type="pil", label="Modified Image"),
title="AI Background Replacer"
)
demo.launch()