vincentmin commited on
Commit
f078020
1 Parent(s): 1ad27de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -75,13 +75,13 @@ def format_chat_prompt(message: str, chat_history, bot_name: str, instructions:
75
  return prompt
76
 
77
 
78
- def chat(bot_name: str):
79
  with gr.Column(elem_id="chat_container"):
80
  with gr.Row():
81
  chatbot = gr.Chatbot(elem_id="chatbot")
82
  with gr.Row():
83
  inputs = gr.Textbox(
84
- placeholder=f"Hello {bot_name} !!",
85
  label="Type an input and press Enter",
86
  max_lines=3,
87
  )
 
75
  return prompt
76
 
77
 
78
+ def chat():
79
  with gr.Column(elem_id="chat_container"):
80
  with gr.Row():
81
  chatbot = gr.Chatbot(elem_id="chatbot")
82
  with gr.Row():
83
  inputs = gr.Textbox(
84
+ placeholder=f"Hi there! Tell me something about yourself.",
85
  label="Type an input and press Enter",
86
  max_lines=3,
87
  )