zss2341 commited on
Commit
0108b56
·
1 Parent(s): b819abd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -37,16 +37,16 @@ with gr.Blocks() as demo:
37
  with gr.Column():
38
  email = gr.Textbox(label="请输入openAI的邮箱地址")
39
  password = gr.Textbox(label="请输入openAI的登录密码")
40
- login = gr.Button("输完箱密点此登录")
41
  login.click(configure_chatbot, inputs=[email, password])
42
  elif password:
43
  configure_chatbot(email, password)
44
 
45
- gr.Markdown("""<h2>开始聊吧 ...</h2>""")
46
  chatbot1 = gr.Chatbot()
47
  message = gr.Textbox(placeholder="Chat here")
48
  state = gr.State()
49
- submit = gr.Button("输入完成一定要点击这里发送")
50
  submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
51
 
52
  demo.launch(debug = True, share=False)
 
37
  with gr.Column():
38
  email = gr.Textbox(label="请输入openAI的邮箱地址")
39
  password = gr.Textbox(label="请输入openAI的登录密码")
40
+ login = gr.Button("输完箱密点此登录,点了即可,没做反馈")
41
  login.click(configure_chatbot, inputs=[email, password])
42
  elif password:
43
  configure_chatbot(email, password)
44
 
45
+ gr.Markdown("""<h2>点完登录就开始聊吧 ...</h2>""")
46
  chatbot1 = gr.Chatbot()
47
  message = gr.Textbox(placeholder="Chat here")
48
  state = gr.State()
49
+ submit = gr.Button("输入完成点击这里发送才有反应")
50
  submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
51
 
52
  demo.launch(debug = True, share=False)