File size: 314 Bytes
f640be4
 
d2378f8
5db3d86
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from text_to_image import TextToImageTool

tool = TextToImageTool()

def fn(*args, **kwargs):
    return tool(*args, **kwargs)

gr.Interface(
    fn=fn,
    inputs=tool_class.inputs,
    outputs=tool_class.outputs,
    title=tool_class.__name__,
    article=tool.description,
).queue(concurrency_count=5).launch()