Spaces:
Runtime error
Runtime error
File size: 309 Bytes
f640be4 5db3d86 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from text_to_image import TextToImageTool
tool = tool_class()
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()
|