Ayeshanoor101 commited on
Commit
1937667
1 Parent(s): 510016a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -80,7 +80,7 @@ def respond(
80
  chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
81
 
82
  # Define the interface layout
83
- with gr.Blocks(fill_height=True, css=css) as demo:
84
  # Add description markdown
85
  gr.Markdown(DESCRIPTION)
86
  # Add duplicate button
@@ -89,7 +89,7 @@ with gr.Blocks(fill_height=True, css=css) as demo:
89
  gr.ChatInterface(
90
  fn=respond,
91
  chatbot=chatbot,
92
- fill_height=True,
93
  additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=False, render=False),
94
  additional_inputs=[
95
  gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
 
80
  chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
81
 
82
  # Define the interface layout
83
+ with gr.Blocks(css=css) as demo:
84
  # Add description markdown
85
  gr.Markdown(DESCRIPTION)
86
  # Add duplicate button
 
89
  gr.ChatInterface(
90
  fn=respond,
91
  chatbot=chatbot,
92
+
93
  additional_inputs_accordion=gr.Accordion(label="⚙️ Parameters", open=False, render=False),
94
  additional_inputs=[
95
  gr.Textbox(value="You are a friendly Chatbot.", label="System message"),