Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -124,8 +124,8 @@ def gradio_interface():
|
|
124 |
style_file = gr.File(label="Upload Style File (Optional)", file_types=[".txt"])
|
125 |
|
126 |
with gr.Row():
|
127 |
-
artist_files = gr.File(label="Upload Artist Files (Multiple Allowed)", file_types=[".txt"],
|
128 |
-
character_files = gr.File(label="Upload Character Files (Multiple Allowed)", file_types=[".txt"],
|
129 |
|
130 |
# 角色类型选择
|
131 |
selected_categories = gr.CheckboxGroup(
|
@@ -154,3 +154,4 @@ def gradio_interface():
|
|
154 |
if __name__ == "__main__":
|
155 |
gradio_interface().launch(share=True)
|
156 |
|
|
|
|
124 |
style_file = gr.File(label="Upload Style File (Optional)", file_types=[".txt"])
|
125 |
|
126 |
with gr.Row():
|
127 |
+
artist_files = gr.File(label="Upload Artist Files (Multiple Allowed)", file_types=[".txt"], multiple=True)
|
128 |
+
character_files = gr.File(label="Upload Character Files (Multiple Allowed)", file_types=[".txt"], multiple=True)
|
129 |
|
130 |
# 角色类型选择
|
131 |
selected_categories = gr.CheckboxGroup(
|
|
|
154 |
if __name__ == "__main__":
|
155 |
gradio_interface().launch(share=True)
|
156 |
|
157 |
+
|