Spaces:
Sleeping
Sleeping
ai_name = gr.Dropdown(label="選擇 AI 助理", choices=[("梨梨","jutor"), ("麥麥","claude3"), ("狐狸貓","groq")], value="jutor")
Browse files
app.py
CHANGED
@@ -2170,7 +2170,7 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue=gr.themes.colors.orange, seconda
|
|
2170 |
stop_btn="🛑 停止",
|
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():
|
@@ -2231,7 +2231,6 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue=gr.themes.colors.orange, seconda
|
|
2231 |
worksheet_exam_result = gr.Textbox(label="初次生成結果", show_copy_button=True, interactive=True, lines=40)
|
2232 |
worksheet_download_exam_result_button = gr.Button("轉成 word,完成後請點擊右下角 download 按鈕", variant="primary")
|
2233 |
worksheet_exam_result_word_link = gr.File(label="Download Word")
|
2234 |
-
|
2235 |
with gr.Tab("課程計畫"):
|
2236 |
with gr.Row():
|
2237 |
with gr.Column(scale=1):
|
@@ -2253,7 +2252,6 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue=gr.themes.colors.orange, seconda
|
|
2253 |
|
2254 |
lesson_plan_download_exam_result_button = gr.Button("轉成 word,完成後請點擊右下角 download 按鈕", variant="primary")
|
2255 |
lesson_plan_exam_result_word_link = gr.File(label="Download Word")
|
2256 |
-
|
2257 |
with gr.Tab("出場券"):
|
2258 |
with gr.Row():
|
2259 |
with gr.Column(scale=1):
|
|
|
2170 |
stop_btn="🛑 停止",
|
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():
|
|
|
2231 |
worksheet_exam_result = gr.Textbox(label="初次生成結果", show_copy_button=True, interactive=True, lines=40)
|
2232 |
worksheet_download_exam_result_button = gr.Button("轉成 word,完成後請點擊右下角 download 按鈕", variant="primary")
|
2233 |
worksheet_exam_result_word_link = gr.File(label="Download Word")
|
|
|
2234 |
with gr.Tab("課程計畫"):
|
2235 |
with gr.Row():
|
2236 |
with gr.Column(scale=1):
|
|
|
2252 |
|
2253 |
lesson_plan_download_exam_result_button = gr.Button("轉成 word,完成後請點擊右下角 download 按鈕", variant="primary")
|
2254 |
lesson_plan_exam_result_word_link = gr.File(label="Download Word")
|
|
|
2255 |
with gr.Tab("出場券"):
|
2256 |
with gr.Row():
|
2257 |
with gr.Column(scale=1):
|