From 0b4e562b96a45d06e5c74e268eceeb2288e3db6d Mon Sep 17 00:00:00 2001 From: william Date: Wed, 18 Sep 2024 15:02:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=83=A8=E5=88=86=E6=96=87?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chyoso_toolkit_ui.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chyoso_toolkit_ui.py b/chyoso_toolkit_ui.py index eae01e4..4af2514 100644 --- a/chyoso_toolkit_ui.py +++ b/chyoso_toolkit_ui.py @@ -137,7 +137,7 @@ def convert_to_docx(text): with gr.Blocks() as iface: gr.Markdown("# 大模型工具集") with gr.Tabs(): - with gr.TabItem("处理并转写"): + with gr.TabItem("音频转写"): with gr.Row(): audio_input = gr.Audio(type="filepath", label="上传音频文件") with gr.Column(): @@ -153,7 +153,7 @@ with gr.Blocks() as iface: process_button.click(process_audio, inputs=[audio_input, offset_input, duration_input], outputs=output_file) direct_transcribe_button.click(direct_transcribe, inputs=[audio_input, offset_input, duration_input], outputs=output_file) - with gr.TabItem("批量处理"): + with gr.TabItem("音频批量转写"): with gr.Row(): link_upload = gr.HTML(value='点击上传文件') with gr.Row(): @@ -171,8 +171,8 @@ with gr.Blocks() as iface: batch_process_button.click(batch_transcribe, outputs=batch_output_file) - with gr.Tab("Markdown 转 DOCX"): - gr.Markdown("## Markdown 转 DOCX 转换器") + with gr.Tab("Markdown 转 Word"): + gr.Markdown("## Markdown 转 Word 转换器") with gr.Row(): text_input = gr.Textbox(lines=10, placeholder="请在此输入 Markdown 内容...") with gr.Row():