Spaces:
Build error
Build error
Update Chatbot/app.py
Browse files- Chatbot/app.py +4 -2
Chatbot/app.py
CHANGED
@@ -25,8 +25,10 @@ import gradio as gr
|
|
25 |
|
26 |
interface = gr.Interface(
|
27 |
fn=predict,
|
28 |
-
|
29 |
-
|
|
|
|
|
30 |
)
|
31 |
|
32 |
if __name__ == '__main__':
|
|
|
25 |
|
26 |
interface = gr.Interface(
|
27 |
fn=predict,
|
28 |
+
theme="default",
|
29 |
+
css=".footer {display:none !important}",
|
30 |
+
inputs=["text", "state"],
|
31 |
+
outputs=["chatbot", "state"],
|
32 |
)
|
33 |
|
34 |
if __name__ == '__main__':
|