hoshingakag commited on
Commit
3e8bc57
1 Parent(s): 02b7135

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,8 +45,8 @@ def generate_chat(prompt: str, chat_messages=chat_history):
45
  return result
46
 
47
  with gr.Blocks() as app:
48
- chatbot = gr.Chatbot(height=500)
49
- msg = gr.Textbox(label="", value="Hi Gerard, can you introduce yourself?")
50
  clear = gr.Button("Clear")
51
 
52
  def user(user_message, history):
 
45
  return result
46
 
47
  with gr.Blocks() as app:
48
+ chatbot = gr.Chatbot(height=400, bubble_full_width=False, container=False)
49
+ msg = gr.Textbox(label="Type your message...", value="Hi Gerard, can you introduce yourself?", container=False)
50
  clear = gr.Button("Clear")
51
 
52
  def user(user_message, history):