Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| import gradio | |
| from app_cn import demo as demo_cn | |
| demo = gr.TabbedInterface( | |
| [ | |
| demo_cn, | |
| ], [ | |
| "中文版", | |
| ]) | |
| if __name__ == "__main__": | |
| demo.queue(concurrency_count=200).launch() | |