chenjianfei commited on
Commit
e1633c6
·
1 Parent(s): 8afc0f4
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -221,6 +221,7 @@ if __name__ == "__main__":
221
  state = {}
222
  resp, state = log_in(0, state)
223
  cosplayer = CosPlayer(description_file=DEFAULT_COSPLAY_SETTING)
 
224
  with gr.Blocks(css=CSS, title="LLM Chat Demo", theme=gr.themes.Soft(font=["sans-serif", "Arial"])) as demo:
225
  gr.Markdown("""
226
  # LLM Chat Demo
@@ -515,6 +516,6 @@ if __name__ == "__main__":
515
  section_state.change(update_history,
516
  inputs=section_state,
517
  outputs=chat_history_select)
518
-
519
  demo.launch(share=True)
520
 
 
221
  state = {}
222
  resp, state = log_in(0, state)
223
  cosplayer = CosPlayer(description_file=DEFAULT_COSPLAY_SETTING)
224
+ print("===== 初始化开始 =====")
225
  with gr.Blocks(css=CSS, title="LLM Chat Demo", theme=gr.themes.Soft(font=["sans-serif", "Arial"])) as demo:
226
  gr.Markdown("""
227
  # LLM Chat Demo
 
516
  section_state.change(update_history,
517
  inputs=section_state,
518
  outputs=chat_history_select)
519
+ print("===== 初始化完成 =====")
520
  demo.launch(share=True)
521