mahiatlinux commited on
Commit
ab9a889
1 Parent(s): a6da5c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -128,8 +128,9 @@ chat_interface = gr.ChatInterface(
128
  ],
129
  )
130
 
 
131
  # Setup and launch the Gradio demo with Blocks API.
132
- with gr.Blocks(css="style.css") as demo:
133
  gr.Markdown(DESCRIPTION)
134
  chat_interface.render()
135
 
 
128
  ],
129
  )
130
 
131
+ chatbot=gr.Chatbot(height=450, label='Gradio ChatInterface')
132
  # Setup and launch the Gradio demo with Blocks API.
133
+ with gr.Blocks(css="style.css", fill_height=True) as demo:
134
  gr.Markdown(DESCRIPTION)
135
  chat_interface.render()
136