zss2341 commited on
Commit
fcd34b2
·
1 Parent(s): e181aeb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -21
app.py CHANGED
@@ -6,10 +6,10 @@ password = None
6
  access_token = None
7
  session_token = None
8
 
9
- def configure_chatbot(e,p):
10
  config = {}
11
- config.update({"email": email,
12
- "password": password})
13
 
14
  global chatbot
15
  chatbot = Chatbot(config=config)
@@ -33,23 +33,23 @@ with gr.Blocks() as demo:
33
  gr.Markdown("""<h2><center>小圈自用即可,能用不必谢我</center></h2> """)
34
  gr.Markdown("""<h2><center>用爱发电甚难,不要随便乱传</center></h2> """)
35
 
36
- if not email or password:
37
- gr.Markdown("""<h2>请使用openAI账户登录</h2>""")
38
- with gr.Row():
39
- e = gr.Textbox(placeholder="请输入openAI的邮箱地址")
40
- with gr.Row():
41
- p = gr.Textbox(placeholder="请输入openAI的登录密码")
42
- with gr.Row():
43
  login = gr.Button("输完箱密点此登录")
44
- login.click(configure_chatbot, inputs=[e,p])
45
- elif email and password:
46
- configure_chatbot(Email, Password)
47
 
48
- gr.Markdown("""<h2>开始聊吧 ...</h2>""")
49
- chatbot1 = gr.Chatbot()
50
- message = gr.Textbox(placeholder="Chat here")
51
- state = gr.State()
52
- submit = gr.Button("输入完成一定要点击这里发送")
53
- submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
54
-
55
- demo.launch(debug = True, share=False)
 
6
  access_token = None
7
  session_token = None
8
 
9
+ def configure_chatbot(Email, Password):
10
  config = {}
11
+ config.update({"email": Email,
12
+ "password": Password})
13
 
14
  global chatbot
15
  chatbot = Chatbot(config=config)
 
33
  gr.Markdown("""<h2><center>小圈自用即可,能用不必谢我</center></h2> """)
34
  gr.Markdown("""<h2><center>用爱发电甚难,不要随便乱传</center></h2> """)
35
 
36
+ if not email or password:
37
+ gr.Markdown("""<h2>请使用openAI账户登录</h2>""")
38
+ with gr.Row():
39
+ email = gr.Textbox(placeholder="请输入openAI的邮箱地址")
40
+ with gr.Row():
41
+ password = gr.Textbox(placeholder="请输入openAI的登录密码")
42
+ with gr.Row():
43
  login = gr.Button("输完箱密点此登录")
44
+ login.click(configure_chatbot, inputs=[email, password])
45
+ elif email and password:
46
+ configure_chatbot(email,password)
47
 
48
+ gr.Markdown("""<h2>开始聊吧 ...</h2>""")
49
+ chatbot1 = gr.Chatbot()
50
+ message = gr.Textbox(placeholder="Chat here")
51
+ state = gr.State()
52
+ submit = gr.Button("输入完成一定要点击这里发送")
53
+ submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
54
+
55
+ demo.launch(debug = True, share=False)