Commit
·
7a651fd
1
Parent(s):
c6c5071
Update app.py
Browse files
app.py
CHANGED
|
@@ -176,12 +176,10 @@ iface = CustomInterface(
|
|
| 176 |
fn=mistral_bot.predict,
|
| 177 |
title=title,
|
| 178 |
description=description,
|
| 179 |
-
examples=examples,
|
| 180 |
inputs=[
|
| 181 |
gr.Textbox(label="Votre question ou votre instruction.", type="text", lines=5),
|
| 182 |
] + additional_inputs,
|
| 183 |
-
outputs=[
|
| 184 |
-
gr.Textbox(label="Output will happear here", type="text", lines=5)],
|
| 185 |
theme="carlosrosash/bellay_test"
|
| 186 |
)
|
| 187 |
|
|
|
|
| 176 |
fn=mistral_bot.predict,
|
| 177 |
title=title,
|
| 178 |
description=description,
|
|
|
|
| 179 |
inputs=[
|
| 180 |
gr.Textbox(label="Votre question ou votre instruction.", type="text", lines=5),
|
| 181 |
] + additional_inputs,
|
| 182 |
+
outputs=[gr.Textbox(label="Réponse", type="text", lines=5)],
|
|
|
|
| 183 |
theme="carlosrosash/bellay_test"
|
| 184 |
)
|
| 185 |
|