Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -59,3 +59,6 @@ with gr.Blocks(css=css) as demo:
|
|
59 |
txt = gr.Textbox(show_label=False, placeholder="在此输入文本并按回车键")
|
60 |
|
61 |
txt.submit(answer, inputs=[txt, state], outputs=[chatbot, state])
|
|
|
|
|
|
|
|
59 |
txt = gr.Textbox(show_label=False, placeholder="在此输入文本并按回车键")
|
60 |
|
61 |
txt.submit(answer, inputs=[txt, state], outputs=[chatbot, state])
|
62 |
+
|
63 |
+
# 启动Gradio应用
|
64 |
+
demo.launch()
|