david-oplatka commited on
Commit
5df36a8
·
verified ·
1 Parent(s): 2284837

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,7 +48,7 @@ heading_html = f'''
48
  </table>
49
  '''
50
 
51
- heading_css = """
52
  table {
53
  border: none;
54
  width: 100%;
@@ -72,7 +72,7 @@ if cfg.examples:
72
  else:
73
  app_examples = None
74
 
75
- demo = gr.ChatInterface(respond, description = heading_html, css = heading_css,
76
  chatbot = gr.Chatbot(value = [[None, "How may I help you?"]]), examples = app_examples, cache_examples = False)
77
 
78
  if __name__ == "__main__":
 
48
  </table>
49
  '''
50
 
51
+ bot_css = """
52
  table {
53
  border: none;
54
  width: 100%;
 
72
  else:
73
  app_examples = None
74
 
75
+ demo = gr.ChatInterface(respond, description = heading_html, css = bot_css,
76
  chatbot = gr.Chatbot(value = [[None, "How may I help you?"]]), examples = app_examples, cache_examples = False)
77
 
78
  if __name__ == "__main__":