Update app.py
Browse files
app.py
CHANGED
@@ -6,10 +6,10 @@ password = None
|
|
6 |
access_token = None
|
7 |
session_token = None
|
8 |
|
9 |
-
def configure_chatbot(
|
10 |
config = {}
|
11 |
-
config.update({"email":
|
12 |
-
"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 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
login = gr.Button("输完箱密点此登录")
|
44 |
-
login.click(configure_chatbot, inputs=[
|
45 |
-
|
46 |
-
configure_chatbot(
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
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)
|