From 35768c3c5c80a71544d55ea3d92bbbd3ecbd00c1 Mon Sep 17 00:00:00 2001 From: VSlobolinskyi Date: Tue, 18 Mar 2025 10:35:00 +0200 Subject: [PATCH] Replace file import with drag&drop --- infer-web.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/infer-web.py b/infer-web.py index 63af2f9..0a5b7f5 100644 --- a/infer-web.py +++ b/infer-web.py @@ -524,12 +524,11 @@ with gr.Blocks(title="RVC WebUI") as app: ), placeholder="C:\\Users\\Desktop\\audio_example.wav", ) - file_index1 = gr.Textbox( - label=i18n( - "特征检索库文件路径,为空则使用下拉的选择结果" - ), - placeholder="C:\\Users\\Desktop\\model_example.index", - interactive=True, + file_index1 = gr.File( + label=i18n("特征检索库文件路径,为空则使用下拉的选择结果"), + file_count="single", + file_types=[".index"], + interactive=True ) file_index2 = gr.Dropdown( label=i18n("自动检测index路径,下拉式选择(dropdown)"),