Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,37 @@ COLOR = "black"
|
|
16 |
EMOJI = "🇫🇷" # Mistral-themed emoji
|
17 |
DESCRIPTION = f"This is {MODEL_NAME} model, a powerful 24B parameter language model from Mistral AI."
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
def load_system_message():
|
20 |
try:
|
21 |
with open('system_message.txt', 'r', encoding='utf-8') as file:
|
@@ -96,6 +127,7 @@ torch_dtype=torch.bfloat16
|
|
96 |
# Create Gradio interface
|
97 |
gr.ChatInterface(
|
98 |
predict,
|
|
|
99 |
title=EMOJI + " " + MODEL_NAME,
|
100 |
description=DESCRIPTION,
|
101 |
examples=[
|
@@ -106,6 +138,7 @@ gr.ChatInterface(
|
|
106 |
['Comment les Français trouvent-ils le temps de faire une pause déjeuner de 2 heures ?'],
|
107 |
['Pourquoi les Français disent-ils bof à tout ?']
|
108 |
],
|
|
|
109 |
additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=False),
|
110 |
additional_inputs=[
|
111 |
gr.Textbox(SYSTEM_MESSAGE, label="System prompt", visible=False), # Hidden system prompt
|
|
|
16 |
EMOJI = "🇫🇷" # Mistral-themed emoji
|
17 |
DESCRIPTION = f"This is {MODEL_NAME} model, a powerful 24B parameter language model from Mistral AI."
|
18 |
|
19 |
+
css = """
|
20 |
+
.message-row {
|
21 |
+
justify-content: space-evenly !important;
|
22 |
+
}
|
23 |
+
.message-bubble-border {
|
24 |
+
border-radius: 6px !important;
|
25 |
+
}
|
26 |
+
.dark.message-bubble-border {
|
27 |
+
border-color: #21293b !important;
|
28 |
+
}
|
29 |
+
.dark.user {
|
30 |
+
background: #0a1120 !important;
|
31 |
+
}
|
32 |
+
.dark.assistant {
|
33 |
+
background: transparent !important;
|
34 |
+
}
|
35 |
+
"""
|
36 |
+
|
37 |
+
PLACEHOLDER = """
|
38 |
+
<div class="message-bubble-border" style="display:flex; max-width: 600px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); backdrop-filter: blur(10px);">
|
39 |
+
<figure style="margin: 0;">
|
40 |
+
<img src="https://huggingface.co/spaces/baconnier/Napoleon/resolve/main/napoleon.jpg" style="width: 100%; height: 100%; border-radius: 8px;">
|
41 |
+
</figure>
|
42 |
+
<div style="padding: .5rem 1.5rem;">
|
43 |
+
<h2 style="text-align: left; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem;"> </h2>
|
44 |
+
<p style="text-align: left; font-size: 16px; line-height: 1.5; margin-bottom: 15px;">Notre sagesse vient de notre expérience, et notre expérience vient de nos sottises</p>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
"""
|
48 |
+
|
49 |
+
|
50 |
def load_system_message():
|
51 |
try:
|
52 |
with open('system_message.txt', 'r', encoding='utf-8') as file:
|
|
|
127 |
# Create Gradio interface
|
128 |
gr.ChatInterface(
|
129 |
predict,
|
130 |
+
css=css,
|
131 |
title=EMOJI + " " + MODEL_NAME,
|
132 |
description=DESCRIPTION,
|
133 |
examples=[
|
|
|
138 |
['Comment les Français trouvent-ils le temps de faire une pause déjeuner de 2 heures ?'],
|
139 |
['Pourquoi les Français disent-ils bof à tout ?']
|
140 |
],
|
141 |
+
placeholder=PLACEHOLDER,
|
142 |
additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=False),
|
143 |
additional_inputs=[
|
144 |
gr.Textbox(SYSTEM_MESSAGE, label="System prompt", visible=False), # Hidden system prompt
|