vilarin commited on
Commit
67988c0
1 Parent(s): df4462a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -35,6 +35,9 @@ CSS = """
35
  h3 {
36
  text-align: center;
37
  }
 
 
 
38
  """
39
 
40
 
@@ -131,7 +134,7 @@ tools_schema = """function_params = {
131
  },
132
  }"""
133
 
134
- chatbot = gr.Chatbot(height = 600, placeholder = PLACEHOLDER, examples = None)
135
  with gr.Blocks(theme="citrus", css=CSS) as demo:
136
  gr.ChatInterface(
137
  fn = stream_chat,
 
35
  h3 {
36
  text-align: center;
37
  }
38
+ .examples {
39
+ visibility: hidden;
40
+ }
41
  """
42
 
43
 
 
134
  },
135
  }"""
136
 
137
+ chatbot = gr.Chatbot(height = 600, placeholder = PLACEHOLDER)
138
  with gr.Blocks(theme="citrus", css=CSS) as demo:
139
  gr.ChatInterface(
140
  fn = stream_chat,