Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ with gr.Blocks() as demo:
|
|
36 |
with gr.Row():
|
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:
|
@@ -44,7 +44,7 @@ with gr.Blocks() as demo:
|
|
44 |
|
45 |
gr.Markdown("""<h2>点完登录就开始聊吧 ...</h2>""")
|
46 |
chatbot1 = gr.Chatbot()
|
47 |
-
message = gr.Textbox(placeholder="点这个框输入聊天内容", label="人类:")
|
48 |
state = gr.State()
|
49 |
submit = gr.Button("输入后点击这里发送")
|
50 |
submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
|
|
|
36 |
with gr.Row():
|
37 |
with gr.Column():
|
38 |
email = gr.Textbox(label="输入openAI的邮箱地址")
|
39 |
+
password = gr.Textbox(label="输入openAI的登录密码", type = password)
|
40 |
login = gr.Button("输完箱密点此登录,点了即可,没做反馈")
|
41 |
login.click(configure_chatbot, inputs=[email, password])
|
42 |
elif password:
|
|
|
44 |
|
45 |
gr.Markdown("""<h2>点完登录就开始聊吧 ...</h2>""")
|
46 |
chatbot1 = gr.Chatbot()
|
47 |
+
message = gr.Textbox(placeholder="点这个框输入聊天内容", label="人类:", max_lines=10)
|
48 |
state = gr.State()
|
49 |
submit = gr.Button("输入后点击这里发送")
|
50 |
submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot1, state])
|