teddyllm commited on
Commit
933f3fc
·
verified ·
1 Parent(s): caf1bb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -99,7 +99,7 @@ def chat_gen(message, history):
99
 
100
  initial_msg = "Hello! I am DDI assistant. You can ask me anything about DDI program. I am happy to assist you."
101
  chatbot = gr.Chatbot(value = [[None, initial_msg]])
102
- demo = gr.ChatInterface(chat_gen, chatbot=chatbot).queue()
103
 
104
 
105
  try:
 
99
 
100
  initial_msg = "Hello! I am DDI assistant. You can ask me anything about DDI program. I am happy to assist you."
101
  chatbot = gr.Chatbot(value = [[None, initial_msg]])
102
+ demo = gr.ChatInterface(chat_gen, chatbot=chatbot, fill_height=True).queue()
103
 
104
 
105
  try: