Fcou commited on
Commit
714dc82
·
1 Parent(s): 8c5936a

new chatgpt app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -57,7 +57,7 @@ with gr.Blocks(css="#chatbot{height:350px} .overflow-y-auto{height:500px}") as d
57
  state = gr.State([])
58
 
59
  with gr.Row():
60
- txt = gr.Textbox(show_label=False, placeholder="请在此框中输入你的问题,ChatGPT3.5将回答").style(container=False)
61
 
62
  txt.submit(predict, [txt, state], [chatbot, state])
63
 
 
57
  state = gr.State([])
58
 
59
  with gr.Row():
60
+ txt = gr.Textbox(show_label=False, placeholder="").style(container=False)
61
 
62
  txt.submit(predict, [txt, state], [chatbot, state])
63