File size: 250 Bytes
e1beb15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import torch
import gradio


def doo(text_prompt):
    return 

iface = gr.Interface(
    fn=doo,
    inputs=gr.Textbox(label="Prompt"),
    outputs=[
        gr.Image(label="Generated Image"),
    ] 
)


if __name__ == "__main__":
    iface.launch()