youngtsai commited on
Commit
a50f5f3
·
1 Parent(s): 19d579b

gr.Markdown("<span style='color:#4e80ee'>主題</span>")

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -1340,16 +1340,24 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1340
  with gr.Row():
1341
  with gr.Accordion("歷程回顧", open=False) as history_accordion:
1342
  scenario_input_history = gr.Textbox(label="情境", visible=False)
 
1343
  topic_input_history = gr.Markdown(label="主題")
 
1344
  points_input_history = gr.Markdown(label="要點/關鍵字")
 
1345
  topic_sentence_input_history = gr.Markdown(label="主題句")
 
1346
  supporting_sentences_input_history = gr.Markdown(label="支持句")
 
1347
  conclusion_sentence_input_history = gr.Markdown(label="結論句")
 
1348
  paragraph_output_history = gr.Markdown(label="完整段落")
1349
  paragraph_evaluate_output_history = gr.Dataframe(label="完整段落分析", wrap=True, column_widths=[35, 15, 50], interactive=False)
1350
  correct_grammatical_spelling_errors_output_table_history = gr.Dataframe(label="修訂文法與拼字錯誤", interactive=False, wrap=True, column_widths=[30, 30, 40])
1351
  refine_output_table_history = gr.Dataframe(label="段落改善建議", wrap=True, interactive=False, column_widths=[30, 30, 40])
 
1352
  refine_output_history = gr.Markdown(label="修改建議")
 
1353
  paragraph_save_output = gr.Markdown(label="最後結果")
1354
  with gr.Row():
1355
  audio_output = gr.Audio(label="音檔", type="filepath")
 
1340
  with gr.Row():
1341
  with gr.Accordion("歷程回顧", open=False) as history_accordion:
1342
  scenario_input_history = gr.Textbox(label="情境", visible=False)
1343
+ gr.Markdown("<span style='color:#4e80ee'>主題</span>")
1344
  topic_input_history = gr.Markdown(label="主題")
1345
+ gr.Markdown("<span style='color:#4e80ee'>要點/關鍵字</span>")
1346
  points_input_history = gr.Markdown(label="要點/關鍵字")
1347
+ gr.Markdown("<span style='color:#4e80ee'>主題句</span>")
1348
  topic_sentence_input_history = gr.Markdown(label="主題句")
1349
+ gr.Markdown("<span style='color:#4e80ee'>支持句</span>")
1350
  supporting_sentences_input_history = gr.Markdown(label="支持句")
1351
+ gr.Markdown("<span style='color:#4e80ee'>結論句</span>")
1352
  conclusion_sentence_input_history = gr.Markdown(label="結論句")
1353
+ gr.Markdown("<span style='color:#4e80ee'>完整段落</span>")
1354
  paragraph_output_history = gr.Markdown(label="完整段落")
1355
  paragraph_evaluate_output_history = gr.Dataframe(label="完整段落分析", wrap=True, column_widths=[35, 15, 50], interactive=False)
1356
  correct_grammatical_spelling_errors_output_table_history = gr.Dataframe(label="修訂文法與拼字錯誤", interactive=False, wrap=True, column_widths=[30, 30, 40])
1357
  refine_output_table_history = gr.Dataframe(label="段落改善建議", wrap=True, interactive=False, column_widths=[30, 30, 40])
1358
+ gr.Markdown("<span style='color:#4e80ee'>修改建議</span>")
1359
  refine_output_history = gr.Markdown(label="修改建議")
1360
+ gr.Markdown("<span style='color:#4e80ee'>修改結果</span>")
1361
  paragraph_save_output = gr.Markdown(label="最後結果")
1362
  with gr.Row():
1363
  audio_output = gr.Audio(label="音檔", type="filepath")