youngtsai commited on
Commit
f7c844a
·
1 Parent(s): 075e01e

generate_paragraph_evaluate_button.click(

Browse files
Files changed (1) hide show
  1. app.py +65 -71
app.py CHANGED
@@ -548,7 +548,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
548
  gr.Markdown("# Step 1. 確定段落主題")
549
  with gr.Row():
550
  with gr.Column():
551
- gr.Markdown("""## 主題是整個段落要探討、闡述的主要議題。確定主題對於段落的架構、內容非常重要,幫助讀者預期段落的內容,增加閱讀的速度及理解度。寫作過程中,掌握主題可以幫助作者有效傳達自己的想法和觀點,幫助讀者更容易理解。""")
552
  with gr.Column():
553
  with gr.Accordion("參考指引:情境與主題如何搭配呢?", open=False):
554
  gr.Markdown("""
@@ -611,11 +611,11 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
611
  """
612
  user_generate_points_prompt = gr.Textbox(label="Points Prompt", value=default_generate_points_prompt, visible=False)
613
  with gr.Row() as points_html:
614
- gr.Markdown("# Step 2. 寫出關鍵字")
615
  with gr.Row():
616
- gr.Markdown("## 根據主題,試著寫出 1-3 個關鍵字。關鍵字務必選擇比較相關的,才好寫入一個段落。不相關的關鍵字會讓段落缺乏連貫一致性。")
617
  with gr.Row():
618
- gr.Markdown("### 基礎級使用者先從 1 個要點開始練習,比較好掌握;等熟悉之後再選擇 2-3 個要點來發揮。")
619
  with gr.Row():
620
  with gr.Column():
621
  points_input = gr.Textbox(label="#1 關鍵字")
@@ -674,12 +674,12 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
674
  user_generate_topic_sentences_prompt = gr.Textbox(label="Topic Sentences Prompt", value=default_generate_topic_sentences_prompt, visible=False)
675
 
676
  with gr.Row() as topic_sentences_html:
677
- gr.Markdown("# Step 4. 選定主題句")
678
  with gr.Row():
679
  with gr.Column():
680
- gr.Markdown("## 主題句(Topic Sentence)是一個段落中最重要的句子,它介紹主題並含括該段落的所有要點,引起讀者的興趣。就像藍圖一樣,指出客廳、廚房、臥室等位置。")
681
- gr.Markdown("## 主題句通常位於段落的開頭,幫助讀者迅速理解段落的內容。如果沒有主題句,段落的架構及內容的一致性及連貫性就會受影響。")
682
- gr.Markdown("## 主題句的範圍,應能適當含括你剛才決定的各個要點,範圍不要太大,以致無法在一個段落清楚説明,也不能太小,無法含括段落的所有要點。")
683
  with gr.Column():
684
  with gr.Accordion("參考指引:合適的主題句?", open=False):
685
  gr.Markdown("""舉例,情境是 `School & Learning`,段落主題是 `Time Management`,那麼 `Balancing school work and leisure time is a crucial aspect of effective time management` 就是合適的主題句,因為它清楚點出該段落將説明有效運用時間來讓課業及娛樂取得平衡。""")
@@ -830,7 +830,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
830
  user_generate_conclusion_sentence_prompt = gr.Textbox(label="Conclusion Sentence Prompt", value=default_generate_conclusion_sentence_prompt, visible=False)
831
 
832
  with gr.Row() as conclusion_sentences_html:
833
- gr.Markdown("# Step 6. 寫出結論句")
834
  with gr.Row():
835
  with gr.Column():
836
  gr.Markdown("## 總結主要觀點,強化整個資訊的傳遞。重述、摘要、回應或評論主題句。")
@@ -1003,17 +1003,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1003
  with gr.Row():
1004
  paragraph_evaluate_output = gr.Dataframe(label="完整段落分析", wrap=True, column_widths=[35, 15, 50], interactive=False)
1005
 
1006
- generate_paragraph_evaluate_button.click(
1007
- fn=generate_paragraph_evaluate,
1008
- inputs=[
1009
- model,
1010
- sys_content_input,
1011
- paragraph_output,
1012
- user_generate_paragraph_evaluate_prompt
1013
- ],
1014
- outputs=paragraph_evaluate_output
1015
- )
1016
-
1017
  # 修訂文法與拼字錯誤
1018
  with gr.Row():
1019
  with gr.Column():
@@ -1058,7 +1047,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1058
  user_correct_grammatical_spelling_errors_prompt = gr.Textbox(label="Correct Grammatical and Spelling Errors Prompt", value=default_user_correct_grammatical_spelling_errors_prompt, visible=False)
1059
 
1060
  with gr.Row() as paragraph_correct_grammatical_spelling_errors_html:
1061
- gr.Markdown("# Step 8. 修訂文法與拼字錯誤")
1062
  with gr.Row():
1063
  with gr.Column():
1064
  gr.Markdown("## 修訂文法與拼字錯誤(Correct Grammatical and Spelling Errors)")
@@ -1078,29 +1067,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1078
  gr.Markdown("## 修訂結果")
1079
  revised_paragraph_diff = gr.HTML()
1080
 
1081
- generate_correct_grammatical_spelling_errors_button.click(
1082
- fn=generate_correct_grammatical_spelling_errors,
1083
- inputs=[
1084
- model,
1085
- sys_content_input,
1086
- eng_level_input,
1087
- paragraph_output,
1088
- user_correct_grammatical_spelling_errors_prompt,
1089
- ],
1090
- outputs=[
1091
- correct_grammatical_spelling_errors_output_table,
1092
- revised_paragraph_output
1093
- ]
1094
- ).then(
1095
- fn=highlight_diff_texts,
1096
- inputs=[correct_grammatical_spelling_errors_output_table, revised_paragraph_output],
1097
- outputs=revised_paragraph_diff
1098
- ).then(
1099
- fn=update_paragraph_correct_grammatical_spelling_errors_input,
1100
- inputs=[paragraph_output],
1101
- outputs=paragraph_correct_grammatical_spelling_errors_input
1102
- )
1103
-
1104
  # 段落改善建議
1105
  with gr.Row():
1106
  with gr.Column():
@@ -1136,7 +1102,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1136
  user_refine_paragraph_prompt = gr.Textbox(label="Refine Paragraph Prompt", value=default_user_refine_paragraph_prompt, visible=False)
1137
 
1138
  with gr.Row() as paragraph_refine_html:
1139
- gr.Markdown("# Step 9. 段落改善建議(Refine Paragraph)")
1140
  with gr.Accordion("參考指引:段落改善建議?", open=False ):
1141
  gr.Markdown("""
1142
  - 段落寫作的過程,如果全程採用 JUTOR 的建議例句,在這部分的批改可能會發生自我修訂的現象。例如:為了符合級別需求,JUTOR 會將自已建議的例句,以換句話說的方式再次修改,你可以忽略。
@@ -1152,25 +1118,59 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1152
  gr.Markdown("## 修改結果")
1153
  refine_output_diff = gr.HTML()
1154
 
1155
- generate_refine_paragraph_button.click(
1156
- fn=generate_refine_paragraph,
1157
- inputs=[
1158
- model,
1159
- sys_content_input,
1160
- eng_level_input,
1161
- paragraph_correct_grammatical_spelling_errors_input,
1162
- user_refine_paragraph_prompt
1163
- ],
1164
- outputs=[refine_output_table, refine_output]
1165
- ).then(
1166
- fn=highlight_diff_texts,
1167
- inputs=[refine_output_table, refine_output],
1168
- outputs=refine_output_diff
1169
- ).then(
1170
- fn=update_paragraph_refine_input,
1171
- inputs=[paragraph_correct_grammatical_spelling_errors_input],
1172
- outputs=paragraph_refine_input
1173
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1174
 
1175
  # Final Step. 寫作完成
1176
  with gr.Row():
@@ -1299,7 +1299,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1299
  full_paragraph_save_output = gr.Textbox(label="最後結果")
1300
  full_audio_output = gr.Audio(label="音檔", type="filepath")
1301
 
1302
-
1303
  full_paragraph_evaluate_button.click(
1304
  fn=generate_paragraph_evaluate,
1305
  inputs=[model, sys_content_input, full_paragraph_input, user_generate_full_paragraph_evaluate_prompt],
@@ -1345,8 +1344,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1345
  inputs=[full_paragraph_refine_input],
1346
  outputs=[full_paragraph_save_output, full_audio_output]
1347
  )
1348
-
1349
- # ====="考古題寫作練習"=====
1350
 
1351
  # ====="英文考古題寫作練習====="
1352
  with gr.Tab("英文考古題寫作練習"):
@@ -1467,7 +1464,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1467
  # =====中文全文批改=====
1468
  with gr.Tab("中文全文批改"):
1469
  with gr.Row(visible=False) as chinese_full_paragraph_params:
1470
- chinese_full_paragraph_sys_content_input = gr.Textbox(label="System Prompt", value="You are an Chinese teacher who is practicing with me to improve my Chinese writing skill.")
1471
  default_user_generate_chinese_full_paragraph_evaluate_prompt = """
1472
  你是一位國文老師,負責評分學生的作文。請根據以下的評分標準,對這篇作文進行詳細評價:
1473
  請根據「國文作文評分標準」,對這篇作文進行詳細評價:
@@ -1550,7 +1547,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1550
  gr.Markdown("## 修訂結果")
1551
  revised_chinese_full_paragraph_diff = gr.HTML()
1552
 
1553
-
1554
  # JUTOR 段落批改與整體建議
1555
  with gr.Row():
1556
  gr.Markdown("## 段落改善建議")
@@ -1564,8 +1560,6 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1564
  gr.Markdown("## 修改結果")
1565
  chinese_full_paragraph_refine_output_diff = gr.HTML()
1566
 
1567
-
1568
-
1569
  # 寫作完成
1570
  with gr.Row():
1571
  gr.Markdown("# 寫作完成")
 
548
  gr.Markdown("# Step 1. 確定段落主題")
549
  with gr.Row():
550
  with gr.Column():
551
+ gr.Markdown("""## 主題是整個段落要探討、闡述的主要議題。確定主題對於段落的架構、內容非常重要。""")
552
  with gr.Column():
553
  with gr.Accordion("參考指引:情境與主題如何搭配呢?", open=False):
554
  gr.Markdown("""
 
611
  """
612
  user_generate_points_prompt = gr.Textbox(label="Points Prompt", value=default_generate_points_prompt, visible=False)
613
  with gr.Row() as points_html:
614
+ gr.Markdown("# Step 2. 找關鍵字")
615
  with gr.Row():
616
+ gr.Markdown("## 根據主題,思考段落的方向及內容,然後用兩個要點/關鍵字來呈現。例如主題:「The Benefits of Learning a Second Language 學習第二種語言的好處」,內容及方向:因為學習第二種語言,例如日語,就可以和日本人溝通,進而學習瞭解日本文化,因而要點/關鍵字就是「Improving communication skills 提升溝通能力」及「Understanding other cultures 瞭解其他文化」。")
617
  with gr.Row():
618
+ gr.Markdown("### 如果不知道要寫什麼,也可以讓Jutor提供要點/關鍵字,以兩個要點/關鍵字為限。")
619
  with gr.Row():
620
  with gr.Column():
621
  points_input = gr.Textbox(label="#1 關鍵字")
 
674
  user_generate_topic_sentences_prompt = gr.Textbox(label="Topic Sentences Prompt", value=default_generate_topic_sentences_prompt, visible=False)
675
 
676
  with gr.Row() as topic_sentences_html:
677
+ gr.Markdown("# Step 4. 寫主題句")
678
  with gr.Row():
679
  with gr.Column():
680
+ gr.Markdown("## 主題句(Topic Sentence)通常位於段落的開頭,幫助讀者迅速理解段落的內容。是段落中最重要的句子,介紹主題並含括段落的所有要點/關鍵字。")
681
+ gr.Markdown("## 例如:「Learning a second language improves communication skills and helps you understand other cultures better. Learning a second language」 是主題, 「improving communication skills 和 understanding other cultures」 則是兩個要點/關鍵字。")
682
+ gr.Markdown("## 書寫段落時,必須確保每個句子都支持和闡述主題句,避免引入無關或偏離主題的討論,否則就會影響段落的架構及內容的一致性及連貫性。")
683
  with gr.Column():
684
  with gr.Accordion("參考指引:合適的主題句?", open=False):
685
  gr.Markdown("""舉例,情境是 `School & Learning`,段落主題是 `Time Management`,那麼 `Balancing school work and leisure time is a crucial aspect of effective time management` 就是合適的主題句,因為它清楚點出該段落將説明有效運用時間來讓課業及娛樂取得平衡。""")
 
830
  user_generate_conclusion_sentence_prompt = gr.Textbox(label="Conclusion Sentence Prompt", value=default_generate_conclusion_sentence_prompt, visible=False)
831
 
832
  with gr.Row() as conclusion_sentences_html:
833
+ gr.Markdown("# Step 5. 寫出結論句")
834
  with gr.Row():
835
  with gr.Column():
836
  gr.Markdown("## 總結主要觀點,強化整個資訊的傳遞。重述、摘要、回應或評論主題句。")
 
1003
  with gr.Row():
1004
  paragraph_evaluate_output = gr.Dataframe(label="完整段落分析", wrap=True, column_widths=[35, 15, 50], interactive=False)
1005
 
 
 
 
 
 
 
 
 
 
 
 
1006
  # 修訂文法與拼字錯誤
1007
  with gr.Row():
1008
  with gr.Column():
 
1047
  user_correct_grammatical_spelling_errors_prompt = gr.Textbox(label="Correct Grammatical and Spelling Errors Prompt", value=default_user_correct_grammatical_spelling_errors_prompt, visible=False)
1048
 
1049
  with gr.Row() as paragraph_correct_grammatical_spelling_errors_html:
1050
+ gr.Markdown("# Step 7. 修訂文法與拼字錯誤")
1051
  with gr.Row():
1052
  with gr.Column():
1053
  gr.Markdown("## 修訂文法與拼字錯誤(Correct Grammatical and Spelling Errors)")
 
1067
  gr.Markdown("## 修訂結果")
1068
  revised_paragraph_diff = gr.HTML()
1069
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1070
  # 段落改善建議
1071
  with gr.Row():
1072
  with gr.Column():
 
1102
  user_refine_paragraph_prompt = gr.Textbox(label="Refine Paragraph Prompt", value=default_user_refine_paragraph_prompt, visible=False)
1103
 
1104
  with gr.Row() as paragraph_refine_html:
1105
+ gr.Markdown("# Step 8. 段落改善建議(Refine Paragraph)")
1106
  with gr.Accordion("參考指引:段落改善建議?", open=False ):
1107
  gr.Markdown("""
1108
  - 段落寫作的過程,如果全程採用 JUTOR 的建議例句,在這部分的批改可能會發生自我修訂的現象。例如:為了符合級別需求,JUTOR 會將自已建議的例句,以換句話說的方式再次修改,你可以忽略。
 
1118
  gr.Markdown("## 修改結果")
1119
  refine_output_diff = gr.HTML()
1120
 
1121
+ generate_paragraph_evaluate_button.click(
1122
+ fn=generate_paragraph_evaluate,
1123
+ inputs=[
1124
+ model,
1125
+ sys_content_input,
1126
+ paragraph_output,
1127
+ user_generate_paragraph_evaluate_prompt
1128
+ ],
1129
+ outputs=paragraph_evaluate_output
1130
+ ).then(
1131
+ fn=update_paragraph_correct_grammatical_spelling_errors_input,
1132
+ inputs=[paragraph_output],
1133
+ outputs=paragraph_correct_grammatical_spelling_errors_input
1134
+ )
1135
+
1136
+ generate_correct_grammatical_spelling_errors_button.click(
1137
+ fn=generate_correct_grammatical_spelling_errors,
1138
+ inputs=[
1139
+ model,
1140
+ sys_content_input,
1141
+ eng_level_input,
1142
+ paragraph_output,
1143
+ user_correct_grammatical_spelling_errors_prompt,
1144
+ ],
1145
+ outputs=[
1146
+ correct_grammatical_spelling_errors_output_table,
1147
+ revised_paragraph_output
1148
+ ]
1149
+ ).then(
1150
+ fn=highlight_diff_texts,
1151
+ inputs=[correct_grammatical_spelling_errors_output_table, revised_paragraph_output],
1152
+ outputs=revised_paragraph_diff
1153
+ ).then(
1154
+ fn=update_paragraph_refine_input,
1155
+ inputs=[paragraph_correct_grammatical_spelling_errors_input],
1156
+ outputs=paragraph_refine_input
1157
+ )
1158
+
1159
+ generate_refine_paragraph_button.click(
1160
+ fn=generate_refine_paragraph,
1161
+ inputs=[
1162
+ model,
1163
+ sys_content_input,
1164
+ eng_level_input,
1165
+ paragraph_correct_grammatical_spelling_errors_input,
1166
+ user_refine_paragraph_prompt
1167
+ ],
1168
+ outputs=[refine_output_table, refine_output]
1169
+ ).then(
1170
+ fn=highlight_diff_texts,
1171
+ inputs=[refine_output_table, refine_output],
1172
+ outputs=refine_output_diff
1173
+ )
1174
 
1175
  # Final Step. 寫作完成
1176
  with gr.Row():
 
1299
  full_paragraph_save_output = gr.Textbox(label="最後結果")
1300
  full_audio_output = gr.Audio(label="音檔", type="filepath")
1301
 
 
1302
  full_paragraph_evaluate_button.click(
1303
  fn=generate_paragraph_evaluate,
1304
  inputs=[model, sys_content_input, full_paragraph_input, user_generate_full_paragraph_evaluate_prompt],
 
1344
  inputs=[full_paragraph_refine_input],
1345
  outputs=[full_paragraph_save_output, full_audio_output]
1346
  )
 
 
1347
 
1348
  # ====="英文考古題寫作練習====="
1349
  with gr.Tab("英文考古題寫作練習"):
 
1464
  # =====中文全文批改=====
1465
  with gr.Tab("中文全文批改"):
1466
  with gr.Row(visible=False) as chinese_full_paragraph_params:
1467
+ chinese_full_paragraph_sys_content_input = gr.Textbox(label="System Prompt", value="You are a Chinese teacher who is practicing with me to improve my Chinese writing skill.")
1468
  default_user_generate_chinese_full_paragraph_evaluate_prompt = """
1469
  你是一位國文老師,負責評分學生的作文。請根據以下的評分標準,對這篇作文進行詳細評價:
1470
  請根據「國文作文評分標準」,對這篇作文進行詳細評價:
 
1547
  gr.Markdown("## 修訂結果")
1548
  revised_chinese_full_paragraph_diff = gr.HTML()
1549
 
 
1550
  # JUTOR 段落批改與整體建議
1551
  with gr.Row():
1552
  gr.Markdown("## 段落改善建議")
 
1560
  gr.Markdown("## 修改結果")
1561
  chinese_full_paragraph_refine_output_diff = gr.HTML()
1562
 
 
 
1563
  # 寫作完成
1564
  with gr.Row():
1565
  gr.Markdown("# 寫作完成")