MaxLSB commited on
Commit
d536bac
·
verified ·
1 Parent(s): 89431d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ def user(message, chat_history):
59
  # Bot response handler
60
  def bot(chat_history, max_tokens, temperature, top_p):
61
  # Insert model name bubble and placeholder for output
62
- chat_history.append([None, f"**Model:** {current_model_name}"])
63
  chat_history.append([None, ""])
64
  # Render model name immediately
65
  yield chat_history
 
59
  # Bot response handler
60
  def bot(chat_history, max_tokens, temperature, top_p):
61
  # Insert model name bubble and placeholder for output
62
+ chat_history.append([None, f"**{current_model_name}**"])
63
  chat_history.append([None, ""])
64
  # Render model name immediately
65
  yield chat_history