seawolf2357
commited on
Commit
•
b73a6e7
1
Parent(s):
917eb84
Update app.py
Browse files
app.py
CHANGED
@@ -64,11 +64,14 @@ def respond(
|
|
64 |
|
65 |
theme = "Nymbo/Nymbo_Theme"
|
66 |
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
|
|
70 |
|
71 |
-
demo = gr.ChatInterface(
|
|
|
72 |
fn=respond,
|
73 |
theme=theme,
|
74 |
additional_inputs=[
|
|
|
64 |
|
65 |
theme = "Nymbo/Nymbo_Theme"
|
66 |
|
67 |
+
css = """
|
68 |
+
footer {
|
69 |
+
visibility: hidden;
|
70 |
+
}
|
71 |
+
"""
|
72 |
|
73 |
+
demo = gr.ChatInterface(
|
74 |
+
css=css,
|
75 |
fn=respond,
|
76 |
theme=theme,
|
77 |
additional_inputs=[
|