Upload app.py
Browse files
app.py
CHANGED
|
@@ -76,18 +76,12 @@ def respond(message, history):
|
|
| 76 |
t.join()
|
| 77 |
|
| 78 |
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
gr.ChatInterface(
|
| 86 |
-
fn=respond,
|
| 87 |
-
type="messages",
|
| 88 |
-
title="Qwen3-30B-A3B",
|
| 89 |
-
description="ZeroGPU-backed Qwen3-30B-A3B chat",
|
| 90 |
-
)
|
| 91 |
|
| 92 |
if __name__ == "__main__":
|
| 93 |
demo.launch()
|
|
|
|
| 76 |
t.join()
|
| 77 |
|
| 78 |
|
| 79 |
+
demo = gr.ChatInterface(
|
| 80 |
+
fn=respond,
|
| 81 |
+
type="messages",
|
| 82 |
+
title="Qwen3-30B-A3B",
|
| 83 |
+
description="ZeroGPU-backed Qwen3-30B-A3B chat",
|
| 84 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
|
| 86 |
if __name__ == "__main__":
|
| 87 |
demo.launch()
|