youngtsai commited on
Commit
d585564
·
1 Parent(s): 5254d95

with gr.Group():

Browse files
Files changed (1) hide show
  1. app.py +52 -52
app.py CHANGED
@@ -484,59 +484,60 @@ CSS = """
484
  }
485
  """
486
 
487
-
488
  with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary_hue=gr.themes.colors.orange), css=CSS) as demo:
489
  # ===== 英文段落寫作練習 =====
490
  with gr.Tab(label="英文段落寫作練習"):
491
- # basic inputs 主題與情境
492
- with gr.Row():
493
- with gr.Column():
494
- with gr.Row(visible=False) as default_params:
495
- model = gr.Radio(["gpt-4-turbo", "gpt-3.5-turbo"], label="Model", value="gpt-4-turbo")
496
- max_tokens = gr.Slider(minimum=50, maximum=4000, value=4000, label="Max Tokens")
497
- sys_content_input = gr.Textbox(label="System Prompt", value="You are an English teacher who is practicing with me to improve my English writing skill.")
498
- eng_level_input = gr.Radio(["beginner", "intermediate", "advanced"], label="English Level", value="beginner")
499
- with gr.Row():
500
- gr.Markdown("# Step 1. 你今天想練習寫什麼呢?")
501
- with gr.Row():
502
- gr.Markdown("""## 寫作的主題與讀者、寫作的目的、文章的風格、長度、範圍、以及作者的專業知識等都有關係。因為不容易找主題,所以利用兩階段方式來找主題。特為較無英文寫作經驗的 基礎級使用者 提供多種大範圍情境,待篩選情境後,下一步再來決定明確的主題。""")
503
- with gr.Row():
504
- with gr.Column():
505
- scenario_input = gr.Textbox(label="先選擇一個大範圍的情境或是自定義:")
506
- with gr.Column():
507
- scenario_values = [
508
- "Health",
509
- "Thanksgiving",
510
- "Halloween",
511
- "moon festival in Taiwan",
512
- "School and Learning",
513
- "Travel and Places",
514
- "Family and Friends",
515
- "Hobbies and Leisure Activities",
516
- "Health and Exercise",
517
- "Personal Experiences",
518
- "My Future Goals",
519
- "School Life",
520
- "Pets",
521
- "A Problem and Solution",
522
- "Holidays and Celebrations",
523
- "My Favorite Cartoon/Anime"
524
- ]
525
- scenario_radio_button = gr.Radio(scenario_values, label="Scenario", elem_id="scenario_button")
526
 
527
- scenario_radio_button.select(
528
- fn=update_scenario_input,
529
- inputs=[scenario_radio_button],
530
- outputs=[scenario_input]
531
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
532
 
 
 
 
 
 
533
 
534
-
535
  # Step 2. 確定段落主題
536
  with gr.Row():
537
  with gr.Column():
538
  with gr.Row():
539
- gr.Markdown("# Step 2. 確定段落主題")
540
  with gr.Row():
541
  with gr.Column():
542
  gr.Markdown("""## 主題是整個段落要探討、闡述的主要議題。確定主題對於段落的架構、內容非常重要,幫助讀者預期段落的內容,增加閱讀的速度及理解度。寫作過程中,掌握主題可以幫助作者有效傳達自己的想法和觀點,幫助讀者更容易理解。""")
@@ -548,11 +549,10 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
548
  """)
549
  with gr.Row(visible=False) as topic_params:
550
  default_generate_topics_prompt = """
551
- Give me 10 topics relevant to Scenario,
552
  for a paragraph. Just the topics, no explanation, use simple English language.
553
  Make sure the vocabulary you use is at english level.
554
  output use JSON
555
-
556
  EXAMPLE:
557
  "topics":["topic1", "topic2", "topic3", "topic4", "topic5", "topic6", "topic7", "topic8", "topic9", "topic10"]
558
  """
@@ -561,7 +561,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
561
  with gr.Column():
562
  topic_input = gr.Textbox(label="選擇合適的主題或是自定義:")
563
  with gr.Column():
564
- generate_topics_button = gr.Button("使用 🪄 JUTOR 產生 10 個段落主題,再挑選一個來練習吧!", variant="primary")
565
  topic_output = gr.Textbox(label="AI Generated Topic 主題", visible=True, value=[])
566
 
567
  generate_topics_button.click(
@@ -603,16 +603,16 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
603
  """
604
  user_generate_points_prompt = gr.Textbox(label="Points Prompt", value=default_generate_points_prompt, visible=False)
605
  with gr.Row() as points_html:
606
- gr.Markdown("# Step 3. 寫出段落要點")
607
  with gr.Row():
608
- gr.Markdown("## 根據情境、主題,可以視主題不同,試著寫出 1-3 個要點。段落要點務必選擇比較相關的,才好寫入一個段落。不相關的要點會讓段落缺乏連貫一致性。")
609
  with gr.Row():
610
- gr.Markdown("### `基礎級使用者` 先從 1 個要點開始練習,比較好掌握;等熟悉之後在 `實力級`,就可選擇 2-3 個要點來發揮。")
611
  with gr.Row():
612
  with gr.Column():
613
- points_input = gr.Textbox(label="#1 要點/關鍵字")
614
  with gr.Column():
615
- generate_points_button = gr.Button("找尋靈感?使用 🪄 JUTOR 產生要點/關鍵字", variant="primary")
616
  points_output = gr.Textbox(label="AI Generated Points 要點", visible=True, value=[])
617
 
618
  generate_points_button.click(
@@ -1166,7 +1166,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
1166
  paragraph_save_button = gr.Button("建立歷程回顧", variant="primary")
1167
  with gr.Row():
1168
  with gr.Accordion("歷程回顧", open=False) as history_accordion:
1169
- scenario_input_history = gr.Textbox(label="情境")
1170
  topic_input_history = gr.Textbox(label="主題")
1171
  points_input_history = gr.Textbox(label="要點")
1172
  topic_sentence_input_history = gr.Textbox(label="主題句")
 
484
  }
485
  """
486
 
 
487
  with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary_hue=gr.themes.colors.orange), css=CSS) as demo:
488
  # ===== 英文段落寫作練習 =====
489
  with gr.Tab(label="英文段落寫作練習"):
490
+ # ===== 基礎級使用者 =====
491
+ with gr.Row(visible=False) as default_params:
492
+ model = gr.Radio(["gpt-4-turbo", "gpt-3.5-turbo"], label="Model", value="gpt-4-turbo")
493
+ max_tokens = gr.Slider(minimum=50, maximum=4000, value=4000, label="Max Tokens")
494
+ sys_content_input = gr.Textbox(label="System Prompt", value="You are an English teacher who is practicing with me to improve my English writing skill.")
495
+ eng_level_input = gr.Radio(["beginner", "intermediate", "advanced"], label="English Level", value="beginner")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
 
497
+ # basic inputs 主題與情境
498
+ with gr.Group():
499
+ with gr.Row(visible=False) as scenario_params:
500
+ with gr.Column():
501
+
502
+ with gr.Row():
503
+ gr.Markdown("# Step 1. 你今天想練習寫什麼呢?")
504
+ with gr.Row():
505
+ gr.Markdown("""## 寫作的主題與讀者、寫作的目的、文章的風格、長度、範圍、以及作者的專業知識等都有關係。因為不容易找主題,所以利用兩階段方式來找主題。特為較無英文寫作經驗的 基礎級使用者 提供多種大範圍情境,待篩選情境後,下一步再來決定明確的主題。""")
506
+ with gr.Row():
507
+ with gr.Column():
508
+ scenario_input = gr.Textbox(label="先選擇一個大範圍的情境或是自定義:")
509
+ with gr.Column():
510
+ scenario_values = [
511
+ "Health",
512
+ "Thanksgiving",
513
+ "Halloween",
514
+ "moon festival in Taiwan",
515
+ "School and Learning",
516
+ "Travel and Places",
517
+ "Family and Friends",
518
+ "Hobbies and Leisure Activities",
519
+ "Health and Exercise",
520
+ "Personal Experiences",
521
+ "My Future Goals",
522
+ "School Life",
523
+ "Pets",
524
+ "A Problem and Solution",
525
+ "Holidays and Celebrations",
526
+ "My Favorite Cartoon/Anime"
527
+ ]
528
+ scenario_radio_button = gr.Radio(scenario_values, label="Scenario", elem_id="scenario_button")
529
 
530
+ scenario_radio_button.select(
531
+ fn=update_scenario_input,
532
+ inputs=[scenario_radio_button],
533
+ outputs=[scenario_input]
534
+ )
535
 
 
536
  # Step 2. 確定段落主題
537
  with gr.Row():
538
  with gr.Column():
539
  with gr.Row():
540
+ gr.Markdown("# Step 1. 確定段落主題")
541
  with gr.Row():
542
  with gr.Column():
543
  gr.Markdown("""## 主題是整個段落要探討、闡述的主要議題。確定主題對於段落的架構、內容非常重要,幫助讀者預期段落的內容,增加閱讀的速度及理解度。寫作過程中,掌握主題可以幫助作者有效傳達自己的想法和觀點,幫助讀者更容易理解。""")
 
549
  """)
550
  with gr.Row(visible=False) as topic_params:
551
  default_generate_topics_prompt = """
552
+ Give me 10 randon topics,
553
  for a paragraph. Just the topics, no explanation, use simple English language.
554
  Make sure the vocabulary you use is at english level.
555
  output use JSON
 
556
  EXAMPLE:
557
  "topics":["topic1", "topic2", "topic3", "topic4", "topic5", "topic6", "topic7", "topic8", "topic9", "topic10"]
558
  """
 
561
  with gr.Column():
562
  topic_input = gr.Textbox(label="選擇合適的主題或是自定義:")
563
  with gr.Column():
564
+ generate_topics_button = gr.Button(" JUTOR 隨機產生 10 個段落主題,再挑選一個來練習吧!", variant="primary")
565
  topic_output = gr.Textbox(label="AI Generated Topic 主題", visible=True, value=[])
566
 
567
  generate_topics_button.click(
 
603
  """
604
  user_generate_points_prompt = gr.Textbox(label="Points Prompt", value=default_generate_points_prompt, visible=False)
605
  with gr.Row() as points_html:
606
+ gr.Markdown("# Step 2. 寫出關鍵字")
607
  with gr.Row():
608
+ gr.Markdown("## 根據主題,試著寫出 1-3 個關鍵字。關鍵字務必選擇比較相關的,才好寫入一個段落。不相關的關鍵字會讓段落缺乏連貫一致性。")
609
  with gr.Row():
610
+ gr.Markdown("### 基礎級使用者先從 1 個要點開始練習,比較好掌握;等熟悉之後再選擇 2-3 個要點來發揮。")
611
  with gr.Row():
612
  with gr.Column():
613
+ points_input = gr.Textbox(label="#1 關鍵字")
614
  with gr.Column():
615
+ generate_points_button = gr.Button("找尋靈感?使用 JUTOR 產生要點/關鍵字", variant="primary")
616
  points_output = gr.Textbox(label="AI Generated Points 要點", visible=True, value=[])
617
 
618
  generate_points_button.click(
 
1166
  paragraph_save_button = gr.Button("建立歷程回顧", variant="primary")
1167
  with gr.Row():
1168
  with gr.Accordion("歷程回顧", open=False) as history_accordion:
1169
+ scenario_input_history = gr.Textbox(label="情境", visible=False)
1170
  topic_input_history = gr.Textbox(label="主題")
1171
  points_input_history = gr.Textbox(label="要點")
1172
  topic_sentence_input_history = gr.Textbox(label="主題句")