Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -158,16 +158,15 @@ me = Me()
|
|
158 |
with gr.Blocks(title="Jacob Isaacson Chatbot") as iface:
|
159 |
with gr.Row():
|
160 |
gr.Markdown("# Chat with Jacob Isaacson")
|
|
|
161 |
gr.ChatInterface(
|
162 |
fn=me.chat_stream,
|
163 |
chatbot=gr.Chatbot(show_copy_button=True),
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
}
|
169 |
)
|
170 |
|
171 |
iface.launch()
|
172 |
|
173 |
-
|
|
|
158 |
with gr.Blocks(title="Jacob Isaacson Chatbot") as iface:
|
159 |
with gr.Row():
|
160 |
gr.Markdown("# Chat with Jacob Isaacson")
|
161 |
+
|
162 |
gr.ChatInterface(
|
163 |
fn=me.chat_stream,
|
164 |
chatbot=gr.Chatbot(show_copy_button=True),
|
165 |
+
textbox=gr.Textbox(placeholder="Ask Jacob about his career...", container=False),
|
166 |
+
title="Chat with Jacob Isaacson",
|
167 |
+
description="Hello, my name is Jacob Isaacson. Ask any questions about my professional career!",
|
168 |
+
type="messages"
|
|
|
169 |
)
|
170 |
|
171 |
iface.launch()
|
172 |
|
|