Youssouf Traore
commited on
Commit
·
46cad96
1
Parent(s):
b87f4b7
Update app.py
Browse files
app.py
CHANGED
@@ -197,7 +197,7 @@ app2 = gr.Interface(
|
|
197 |
fn=gpt,
|
198 |
title="Mariam-U",
|
199 |
description=description,
|
200 |
-
inputs=gr.Textbox(label="Question:", lines=
|
201 |
outputs=gr.Textbox(),
|
202 |
)
|
203 |
|
@@ -207,7 +207,7 @@ app3 = gr.Interface(
|
|
207 |
fn=gpt_francais,
|
208 |
title="Mariam-French",
|
209 |
description=description_french,
|
210 |
-
inputs=[gr.Textbox(label="Sujet:", lines=
|
211 |
outputs=gr.Textbox(),
|
212 |
)
|
213 |
|
@@ -218,7 +218,7 @@ app4 = gr.Interface(
|
|
218 |
fn=gpt_philo,
|
219 |
title="Mariam-Philo",
|
220 |
description="Ah..banana banana...",
|
221 |
-
inputs=gr.Textbox(label="Sujet:", lines=
|
222 |
outputs=gr.Textbox(),
|
223 |
)
|
224 |
|
|
|
197 |
fn=gpt,
|
198 |
title="Mariam-U",
|
199 |
description=description,
|
200 |
+
inputs=gr.Textbox(label="Question:", lines=4),
|
201 |
outputs=gr.Textbox(),
|
202 |
)
|
203 |
|
|
|
207 |
fn=gpt_francais,
|
208 |
title="Mariam-French",
|
209 |
description=description_french,
|
210 |
+
inputs=[gr.Textbox(label="Sujet:", lines=3), gr.Radio(["Etaye","refute"])],
|
211 |
outputs=gr.Textbox(),
|
212 |
)
|
213 |
|
|
|
218 |
fn=gpt_philo,
|
219 |
title="Mariam-Philo",
|
220 |
description="Ah..banana banana...",
|
221 |
+
inputs=gr.Textbox(label="Sujet:", lines=3),
|
222 |
outputs=gr.Textbox(),
|
223 |
)
|
224 |
|