Spaces:
Running
Running
hoshingakag
commited on
Commit
•
3e8bc57
1
Parent(s):
02b7135
Update app.py
Browse files
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=
|
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):
|