jisaacso219 commited on
Commit
5b130e9
·
verified ·
1 Parent(s): 2e03377

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
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
- type="messages",
165
- chatbot_initial_message={
166
- "role": "assistant",
167
- "content": "Hello, my name is Jacob Isaacson. Ask any questions about my professional career!"
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