Spaces:
Runtime error
Runtime error
| from text_to_image import TextToImageTool | |
| import gradio as gr | |
| tool = TextToImageTool() | |
| def fn(*args, **kwargs): | |
| return tool(*args, **kwargs) | |
| gr.Interface( | |
| fn=fn, | |
| inputs=tool.inputs, | |
| outputs=tool.outputs, | |
| title="TextToImageTool", | |
| article=tool.description, | |
| ).queue(concurrency_count=5).launch() | |