Laura Biester commited on
Commit
db84fee
·
1 Parent(s): 4a74d3f
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ def middchat(bot_cache: BotCache, message: str, history: List[Tuple[str, str]])
68
 
69
  cache = BotCache()
70
  chat_partial = partial(middchat, cache)
71
- initial_msg = "Welcome to MiddChat!\n" + chat_partial("", []) + "\n\nPlease note that if you want to reset your chat, you should refresh this page!\nIf you want to update the bot list, type \"update bots\""
72
  chatbot = gr.Chatbot([(initial_msg, None)])
73
  demo = gr.ChatInterface(
74
  fn=chat_partial,
 
68
 
69
  cache = BotCache()
70
  chat_partial = partial(middchat, cache)
71
+ initial_msg = "Welcome to MiddChat! Type anything to get a list of available bots.\nPlease note that if you want to reset your chat, you should refresh this page!\nIf you want to update the bot list, type \"update bots\""
72
  chatbot = gr.Chatbot([(initial_msg, None)])
73
  demo = gr.ChatInterface(
74
  fn=chat_partial,