File size: 614 Bytes
b4d8bf0
b09c04c
c767c81
9db0929
b4090ce
9db0929
a012756
9db0929
 
2430f28
1f71e06
b4d8bf0
9db0929
 
 
 
 
b09c04c
 
9db0929
b4d8bf0
9db0929
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr
import spaces
from diffusers import DiffusionPipeline

pipe = DiffusionPipeline.from_pretrained("stabilityai/sdxl-turbo")

@spaces.GPU(duration=250)
def generate_image(prompt):
    # Run the diffusion model to generate an image
    output = pipe(prompt, num_inference_steps=50, guidance_scale=7.5)
    return output.images[0]

gr_interface = gr.Interface(
    fn=generate_image,
    inputs="text",
    outputs="image",
    title="Real-time Image Generation with Diffusion",
    description="Enter a prompt to generate an image",
    theme="soft"
)

# Launch the Gradio app
gr_interface.launch()