Spaces:
Runtime error
Runtime error
Commit
·
c4dfe21
1
Parent(s):
64b9fdd
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import gradio
|
| 3 |
+
|
| 4 |
+
from app_cn import demo as demo_cn
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
demo = gr.TabbedInterface(
|
| 8 |
+
[
|
| 9 |
+
demo_cn,
|
| 10 |
+
], [
|
| 11 |
+
"中文版",
|
| 12 |
+
])
|
| 13 |
+
|
| 14 |
+
if __name__ == "__main__":
|
| 15 |
+
demo.queue(concurrency_count=200).launch()
|