aixsatoshi commited on
Commit
a3e36c2
1 Parent(s): 8581507

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -81,12 +81,11 @@ def stream_chat(message: str, history: list, temperature: float, max_new_tokens:
81
 
82
 
83
 
84
- chatbot = gr.Chatbot(height=1000)
85
 
86
  with gr.Blocks(css=CSS) as demo:
87
  gr.HTML(TITLE)
88
  gr.HTML(DESCRIPTION)
89
- gr.DuplicateButton(value="Duplicate Space for private use", elem_classes="duplicate-button")
90
  gr.ChatInterface(
91
  fn=stream_chat,
92
  chatbot=chatbot,
 
81
 
82
 
83
 
84
+ chatbot = gr.Chatbot(height=500)
85
 
86
  with gr.Blocks(css=CSS) as demo:
87
  gr.HTML(TITLE)
88
  gr.HTML(DESCRIPTION)
 
89
  gr.ChatInterface(
90
  fn=stream_chat,
91
  chatbot=chatbot,