youngtsai commited on
Commit
8fe038a
·
1 Parent(s): de4d585

, likeable=True

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1883,15 +1883,15 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue=gr.themes.colors.orange, seconda
1883
  msg = gr.Textbox(label="Message")
1884
  send_button = gr.Button("Send", variant="primary")
1885
  with gr.Tab("GROQ"):
1886
- groq_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="groq mode chatbot", show_share_button=False)
1887
  groq_msg = gr.Textbox(label="Message")
1888
  groq_send_button = gr.Button("Send", variant="primary")
1889
  with gr.Tab("JUTOR"):
1890
- jutor_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="jutor mode chatbot", show_share_button=False)
1891
  jutor_msg = gr.Textbox(label="Message")
1892
  jutor_send_button = gr.Button("Send", variant="primary")
1893
  with gr.Tab("CLAUDE"):
1894
- claude_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="claude mode chatbot", show_share_button=False)
1895
  claude_msg = gr.Textbox(label="Message")
1896
  claude_send_button = gr.Button("Send", variant="primary")
1897
 
 
1883
  msg = gr.Textbox(label="Message")
1884
  send_button = gr.Button("Send", variant="primary")
1885
  with gr.Tab("GROQ"):
1886
+ groq_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="groq mode chatbot", show_share_button=False, likeable=True)
1887
  groq_msg = gr.Textbox(label="Message")
1888
  groq_send_button = gr.Button("Send", variant="primary")
1889
  with gr.Tab("JUTOR"):
1890
+ jutor_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="jutor mode chatbot", show_share_button=False, likeable=True)
1891
  jutor_msg = gr.Textbox(label="Message")
1892
  jutor_send_button = gr.Button("Send", variant="primary")
1893
  with gr.Tab("CLAUDE"):
1894
+ claude_chatbot = gr.Chatbot(avatar_images=[bot_avatar, user_avatar], label="claude mode chatbot", show_share_button=False, likeable=True)
1895
  claude_msg = gr.Textbox(label="Message")
1896
  claude_send_button = gr.Button("Send", variant="primary")
1897