Spaces:
Build error
Build error
updates
Browse files
app.py
CHANGED
@@ -217,13 +217,14 @@ chatiface = gr.Interface(
|
|
217 |
gr.Textbox(lines=1, value="<|endoftext|>,\\n") # stop
|
218 |
],
|
219 |
outputs=[gr.Chatbot(color_map=("green", "pink")),"state"],
|
220 |
-
)
|
221 |
|
222 |
demo = gr.TabbedInterface(
|
223 |
|
224 |
[iface,chatiface],["Generative","Chatbot"],
|
225 |
title="RWKV-4 (1.5b Instruct)",
|
226 |
|
227 |
-
)
|
228 |
|
|
|
229 |
demo.launch(share=False)
|
|
|
217 |
gr.Textbox(lines=1, value="<|endoftext|>,\\n") # stop
|
218 |
],
|
219 |
outputs=[gr.Chatbot(color_map=("green", "pink")),"state"],
|
220 |
+
).queue()
|
221 |
|
222 |
demo = gr.TabbedInterface(
|
223 |
|
224 |
[iface,chatiface],["Generative","Chatbot"],
|
225 |
title="RWKV-4 (1.5b Instruct)",
|
226 |
|
227 |
+
)
|
228 |
|
229 |
+
demo.queue()
|
230 |
demo.launch(share=False)
|