Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ password = None
|
|
6 |
access_token = None
|
7 |
session_token = None
|
8 |
|
9 |
-
def configure_chatbot(
|
10 |
config = {}
|
11 |
config.update({"email": Email,
|
12 |
"password": Password})
|
@@ -34,21 +34,22 @@ with gr.Blocks() as demo:
|
|
34 |
gr.Markdown("""<h2><center>用爱发电甚难,不要随便乱传</center></h2> """)
|
35 |
if not email or password:
|
36 |
gr.Markdown("""<h2>请使用openAI账户登录</h2>""")
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
40 |
password = gr.Textbox(placeholder="请输入openAI的登录密码")
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
elif email and password:
|
45 |
-
configure_chatbot(email,password)
|
46 |
|
47 |
-
gr.Markdown("""<h2>开始聊吧 ...</h2>""")
|
48 |
-
chatbot1 = gr.Chatbot()
|
49 |
-
message = gr.Textbox(placeholder="Chat here")
|
50 |
-
state = gr.State()
|
51 |
-
submit = gr.Button("输入完成一定要点击这里发送")
|
52 |
-
submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
|
53 |
|
54 |
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})
|
|
|
34 |
gr.Markdown("""<h2><center>用爱发电甚难,不要随便乱传</center></h2> """)
|
35 |
if not email or password:
|
36 |
gr.Markdown("""<h2>请使用openAI账户登录</h2>""")
|
37 |
+
with gr.Row():
|
38 |
+
with gr.Group():
|
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)
|