Update app.py
Browse files
app.py
CHANGED
@@ -61,8 +61,15 @@ def respond(
|
|
61 |
response += token.strip("") # ํ ํฐ ์ ๊ฑฐ
|
62 |
yield response
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
# Gradio ์ธํฐํ์ด์ค ์ค์ ๋ถ๋ถ๋ ์์
|
65 |
-
demo = gr.ChatInterface(
|
66 |
respond,
|
67 |
additional_inputs=[
|
68 |
gr.Textbox(label="System Message", value=""),
|
|
|
61 |
response += token.strip("") # ํ ํฐ ์ ๊ฑฐ
|
62 |
yield response
|
63 |
|
64 |
+
css = """
|
65 |
+
footer {
|
66 |
+
visibility: hidden;
|
67 |
+
}
|
68 |
+
"""
|
69 |
+
|
70 |
+
|
71 |
# Gradio ์ธํฐํ์ด์ค ์ค์ ๋ถ๋ถ๋ ์์
|
72 |
+
demo = gr.ChatInterface(theme="Nymbo/Nymbo_Theme", css=css,
|
73 |
respond,
|
74 |
additional_inputs=[
|
75 |
gr.Textbox(label="System Message", value=""),
|