Update app.py
Browse files
app.py
CHANGED
@@ -70,10 +70,10 @@ with gr.Blocks(css=CSS) as demo:
|
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|
72 |
gr.Markdown(f"""
|
73 |
-
#
|
74 |
|
75 |
### Demo of LeoLM-13B Chatbot, powered and built by [LAION](https://laion.ai/) and [Hessian.AI](https://hessian.ai/)!
|
76 |
-
|
77 |
|
78 |
⚠️ **Limitations**: The model can and will produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so.<br/> (⚠️ ***Einschränkungen***: *Das Modell kann und wird faktisch falsche Informationen produzieren, Fakten und Handlungen halluzinieren. Da es keiner fortgeschrittenen Anpassung/Angleichung unterzogen wurde, kann es problematische Ergebnisse produzieren, insbesondere wenn es dazu aufgefordert wird.*)
|
79 |
|
@@ -88,7 +88,7 @@ with gr.Blocks(css=CSS) as demo:
|
|
88 |
lines=3,
|
89 |
)
|
90 |
with gr.Row():
|
91 |
-
submit = gr.Button(value="
|
92 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|
93 |
stop = gr.Button(value="Stop", variant="secondary").style(full_width=False)
|
94 |
with gr.Accordion("Show Model Parameters", open=False):
|
|
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|
72 |
gr.Markdown(f"""
|
73 |
+
# 🦁 LeoLM 13B Chat 🦁
|
74 |
|
75 |
### Demo of LeoLM-13B Chatbot, powered and built by [LAION](https://laion.ai/) and [Hessian.AI](https://hessian.ai/)!
|
76 |
+
✨ LeoLM extends Llama-2's capabilities into German through continued pretraining on a large corpus of German-language and mostly locality-specific text.
|
77 |
|
78 |
⚠️ **Limitations**: The model can and will produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so.<br/> (⚠️ ***Einschränkungen***: *Das Modell kann und wird faktisch falsche Informationen produzieren, Fakten und Handlungen halluzinieren. Da es keiner fortgeschrittenen Anpassung/Angleichung unterzogen wurde, kann es problematische Ergebnisse produzieren, insbesondere wenn es dazu aufgefordert wird.*)
|
79 |
|
|
|
88 |
lines=3,
|
89 |
)
|
90 |
with gr.Row():
|
91 |
+
submit = gr.Button(value="Send message", variant="secondary").style(full_width=True)
|
92 |
clear = gr.Button(value="New topic", variant="secondary").style(full_width=False)
|
93 |
stop = gr.Button(value="Stop", variant="secondary").style(full_width=False)
|
94 |
with gr.Accordion("Show Model Parameters", open=False):
|