youngtsai commited on
Commit
ae3025f
·
1 Parent(s): dd10f2d

ai_chatbot = gr.Chatbot(avatar_images=[user_avatar, bot_avatar], label="ai_chatbot", show_share_button=False, likeable=True, show_label=False, latex_delimiters=latex_delimiters)

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2171,7 +2171,7 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue=gr.themes.colors.orange, seconda
2171
  )
2172
  with gr.Tab("其他精靈"):
2173
  ai_name = gr.Dropdown(label="選擇 AI 助理", choices=[("梨梨","jutor"), ("麥麥","claude3"), ("狐狸貓","groq")], value="jutor")
2174
- ai_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="ai_chatbot", show_share_button=False, likeable=True, show_label=False, latex_delimiters=latex_delimiters)
2175
  ai_chatbot_socratic_mode_btn = gr.Checkbox(label="蘇格拉底家教助理模式", value=True, visible=False)
2176
  with gr.Row():
2177
  with gr.Accordion("你也有類似的問題想問嗎?", open=False) as ask_questions_accordion_2:
 
2171
  )
2172
  with gr.Tab("其他精靈"):
2173
  ai_name = gr.Dropdown(label="選擇 AI 助理", choices=[("梨梨","jutor"), ("麥麥","claude3"), ("狐狸貓","groq")], value="jutor")
2174
+ ai_chatbot = gr.Chatbot(avatar_images=[user_avatar, bot_avatar], label="ai_chatbot", show_share_button=False, likeable=True, show_label=False, latex_delimiters=latex_delimiters)
2175
  ai_chatbot_socratic_mode_btn = gr.Checkbox(label="蘇格拉底家教助理模式", value=True, visible=False)
2176
  with gr.Row():
2177
  with gr.Accordion("你也有類似的問題想問嗎?", open=False) as ask_questions_accordion_2: