Update app.py
Browse files
app.py
CHANGED
@@ -66,14 +66,14 @@ with gr.Blocks(css=css) as demo:
|
|
66 |
with gr.Row():
|
67 |
with gr.Column():
|
68 |
input_text = gr.Textbox(label="Input text prompt",
|
69 |
-
lines=
|
70 |
with gr.Row():
|
71 |
see_prompts = gr.Button("Expand my prompts")
|
72 |
|
73 |
with gr.Column():
|
74 |
text_output = gr.Textbox(
|
75 |
label="Expanded text prompts",
|
76 |
-
lines=
|
77 |
elem_id="translated"
|
78 |
)
|
79 |
with gr.Row():
|
|
|
66 |
with gr.Row():
|
67 |
with gr.Column():
|
68 |
input_text = gr.Textbox(label="Input text prompt",
|
69 |
+
lines=2, elem_id="input-text")
|
70 |
with gr.Row():
|
71 |
see_prompts = gr.Button("Expand my prompts")
|
72 |
|
73 |
with gr.Column():
|
74 |
text_output = gr.Textbox(
|
75 |
label="Expanded text prompts",
|
76 |
+
lines=8,
|
77 |
elem_id="translated"
|
78 |
)
|
79 |
with gr.Row():
|