Spaces:
Running
on
Zero
Running
on
Zero
xieli
commited on
Commit
·
f002e54
1
Parent(s):
822d1fc
feat: update target text max_len
Browse files
app.py
CHANGED
|
@@ -358,7 +358,7 @@ class EditxTab:
|
|
| 358 |
type="filepath",
|
| 359 |
label="Input Audio",
|
| 360 |
)
|
| 361 |
-
self.generated_text = gr.Textbox(label="Target Text", lines=1, max_lines=200, max_length=
|
| 362 |
with gr.Column():
|
| 363 |
with gr.Row():
|
| 364 |
self.edit_type = gr.Dropdown(label="Task", choices=self.edit_type_list, value="clone")
|
|
|
|
| 358 |
type="filepath",
|
| 359 |
label="Input Audio",
|
| 360 |
)
|
| 361 |
+
self.generated_text = gr.Textbox(label="Target Text", lines=1, max_lines=200, max_length=1000)
|
| 362 |
with gr.Column():
|
| 363 |
with gr.Row():
|
| 364 |
self.edit_type = gr.Dropdown(label="Task", choices=self.edit_type_list, value="clone")
|