Spaces:
Runtime error
Runtime error
Commit ·
f7f4627
1
Parent(s): ecec7b8
Set initial max lines
Browse files
app.py
CHANGED
|
@@ -340,6 +340,7 @@ with demo:
|
|
| 340 |
|
| 341 |
output_intro = gr.Textbox(
|
| 342 |
label="Output",
|
|
|
|
| 343 |
max_lines=1000
|
| 344 |
)
|
| 345 |
with gr.Tab("Body Paragraph"):
|
|
@@ -353,6 +354,7 @@ with demo:
|
|
| 353 |
|
| 354 |
output_body = gr.Textbox(
|
| 355 |
label="Output",
|
|
|
|
| 356 |
max_lines=1000
|
| 357 |
)
|
| 358 |
# with gr.Tab("Custom prompt"):
|
|
|
|
| 340 |
|
| 341 |
output_intro = gr.Textbox(
|
| 342 |
label="Output",
|
| 343 |
+
lines=1000,
|
| 344 |
max_lines=1000
|
| 345 |
)
|
| 346 |
with gr.Tab("Body Paragraph"):
|
|
|
|
| 354 |
|
| 355 |
output_body = gr.Textbox(
|
| 356 |
label="Output",
|
| 357 |
+
lines=1000,
|
| 358 |
max_lines=1000
|
| 359 |
)
|
| 360 |
# with gr.Tab("Custom prompt"):
|