Update app.py
Browse files
app.py
CHANGED
@@ -121,6 +121,7 @@ demo = gr.ChatInterface(
|
|
121 |
color_accent_soft_dark="transparent"
|
122 |
),
|
123 |
css=css,
|
|
|
124 |
retry_btn="Retry",
|
125 |
undo_btn="Undo",
|
126 |
clear_btn="Clear",
|
@@ -131,6 +132,11 @@ demo = gr.ChatInterface(
|
|
131 |
placeholder=PLACEHOLDER,
|
132 |
show_copy_button=True
|
133 |
)
|
|
|
|
|
|
|
|
|
|
|
134 |
)
|
135 |
|
136 |
if __name__ == "__main__":
|
|
|
121 |
color_accent_soft_dark="transparent"
|
122 |
),
|
123 |
css=css,
|
124 |
+
title="🇫🇷 Napoleon 🇫🇷",
|
125 |
retry_btn="Retry",
|
126 |
undo_btn="Undo",
|
127 |
clear_btn="Clear",
|
|
|
132 |
placeholder=PLACEHOLDER,
|
133 |
show_copy_button=True
|
134 |
)
|
135 |
+
examples=[
|
136 |
+
['Comment un Français peut-il survivre sans fromage pendant plus de 24h ?'],
|
137 |
+
['Pourquoi les serveurs parisiens sont-ils si "charmants" avec les touristes ?'],
|
138 |
+
['Est-il vrai que les Français font la grève plus souvent qu ils ne travaillent ?'],
|
139 |
+
],
|
140 |
)
|
141 |
|
142 |
if __name__ == "__main__":
|