Spaces:
Running
Running
, copyable=True
Browse files
app.py
CHANGED
@@ -380,7 +380,7 @@ with gr.Blocks() as demo:
|
|
380 |
gr.Markdown("## 7. Paragraph Integration and Revision 段落確認與修訂")
|
381 |
generate_paragraph_button = gr.Button("Generate Paragraph")
|
382 |
paragraph_output = gr.Textbox(label="Generated Paragraph 完整段落")
|
383 |
-
paragraph_input = gr.Textbox(label="Paragraph")
|
384 |
|
385 |
gr.Markdown("## 8. Evaluate 分析")
|
386 |
default_user_generate_paragraph_evaluate_prompt = """
|
@@ -458,7 +458,7 @@ with gr.Blocks() as demo:
|
|
458 |
user_correct_grammatical_spelling_errors_prompt = gr.Textbox(label="Correct Grammatical and Spelling Errors Prompt", value=default_user_correct_grammatical_spelling_errors_prompt)
|
459 |
generate_correct_grammatical_spelling_errors_button = gr.Button("Correct Grammatical and Spelling Errors")
|
460 |
correct_grammatical_spelling_errors_output = gr.Textbox(label="Correct Grammatical and Spelling Errors 修訂文法與拼字錯誤")
|
461 |
-
paragraph_correct_grammatical_spelling_errors_input = gr.Textbox(label="Paragraph")
|
462 |
|
463 |
gr.Markdown("## 10. Refine Paragraph 段落改善建議")
|
464 |
default_user_refine_paragraph_prompt = """
|
@@ -482,7 +482,7 @@ with gr.Blocks() as demo:
|
|
482 |
user_refine_paragraph_prompt = gr.Textbox(label="Refine Paragraph Prompt", value=default_user_refine_paragraph_prompt)
|
483 |
generate_refine_paragraph_button = gr.Button("Refine Paragraph")
|
484 |
refine_output = gr.Textbox(label="Refine Paragraph 段落改善建議")
|
485 |
-
paragraph_refine_input = gr.Textbox(label="Paragraph 段落改善")
|
486 |
|
487 |
gr.Markdown("## 11. Save and Share")
|
488 |
paragraph_save_button = gr.Button("Save and Share")
|
|
|
380 |
gr.Markdown("## 7. Paragraph Integration and Revision 段落確認與修訂")
|
381 |
generate_paragraph_button = gr.Button("Generate Paragraph")
|
382 |
paragraph_output = gr.Textbox(label="Generated Paragraph 完整段落")
|
383 |
+
paragraph_input = gr.Textbox(label="Paragraph", copyable=True)
|
384 |
|
385 |
gr.Markdown("## 8. Evaluate 分析")
|
386 |
default_user_generate_paragraph_evaluate_prompt = """
|
|
|
458 |
user_correct_grammatical_spelling_errors_prompt = gr.Textbox(label="Correct Grammatical and Spelling Errors Prompt", value=default_user_correct_grammatical_spelling_errors_prompt)
|
459 |
generate_correct_grammatical_spelling_errors_button = gr.Button("Correct Grammatical and Spelling Errors")
|
460 |
correct_grammatical_spelling_errors_output = gr.Textbox(label="Correct Grammatical and Spelling Errors 修訂文法與拼字錯誤")
|
461 |
+
paragraph_correct_grammatical_spelling_errors_input = gr.Textbox(label="Paragraph", copyable=True)
|
462 |
|
463 |
gr.Markdown("## 10. Refine Paragraph 段落改善建議")
|
464 |
default_user_refine_paragraph_prompt = """
|
|
|
482 |
user_refine_paragraph_prompt = gr.Textbox(label="Refine Paragraph Prompt", value=default_user_refine_paragraph_prompt)
|
483 |
generate_refine_paragraph_button = gr.Button("Refine Paragraph")
|
484 |
refine_output = gr.Textbox(label="Refine Paragraph 段落改善建議")
|
485 |
+
paragraph_refine_input = gr.Textbox(label="Paragraph 段落改善", copyable=True)
|
486 |
|
487 |
gr.Markdown("## 11. Save and Share")
|
488 |
paragraph_save_button = gr.Button("Save and Share")
|