Spaces:
Running
Running
Reduce max lines to display which helps with CSS sizing issues on large pastes
Browse files
app.py
CHANGED
|
@@ -545,7 +545,8 @@ with gr.Blocks(theme=theme, css=custom_css) as demo:
|
|
| 545 |
placeholder="Type your message here and press Enter or upload file...",
|
| 546 |
show_label=False,
|
| 547 |
sources=["upload"],
|
| 548 |
-
max_plain_text_length=100000
|
|
|
|
| 549 |
)
|
| 550 |
|
| 551 |
# Original text-only input
|
|
|
|
| 545 |
placeholder="Type your message here and press Enter or upload file...",
|
| 546 |
show_label=False,
|
| 547 |
sources=["upload"],
|
| 548 |
+
max_plain_text_length=100000,
|
| 549 |
+
max_lines=10
|
| 550 |
)
|
| 551 |
|
| 552 |
# Original text-only input
|