Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -175,14 +175,15 @@ with gr.Blocks(theme="soft", css=CSS) as demo:
|
|
| 175 |
with gr.Column(scale=4):
|
| 176 |
source_text = gr.Textbox(
|
| 177 |
label="Source Text",
|
| 178 |
-
value="
|
| 179 |
-
"
|
| 180 |
-
"
|
| 181 |
lines=10,
|
| 182 |
)
|
| 183 |
output_text = gr.Textbox(
|
| 184 |
label="Output Text",
|
| 185 |
lines=10,
|
|
|
|
| 186 |
)
|
| 187 |
with gr.Row():
|
| 188 |
submit = gr.Button(value="Submit")
|
|
|
|
| 175 |
with gr.Column(scale=4):
|
| 176 |
source_text = gr.Textbox(
|
| 177 |
label="Source Text",
|
| 178 |
+
value="LLaMAX is a language model with powerful multilingual capabilities without loss instruction-following capabilities. "+\
|
| 179 |
+
"LLaMAX supports translation between more than 100 languages, "+\
|
| 180 |
+
"surpassing the performance of similarly scaled LLMs.",
|
| 181 |
lines=10,
|
| 182 |
)
|
| 183 |
output_text = gr.Textbox(
|
| 184 |
label="Output Text",
|
| 185 |
lines=10,
|
| 186 |
+
show_copy_button=True,
|
| 187 |
)
|
| 188 |
with gr.Row():
|
| 189 |
submit = gr.Button(value="Submit")
|