ginipick commited on
Commit
8321675
ยท
verified ยท
1 Parent(s): 54e6271

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
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=""),