bleysg commited on
Commit
615a7e2
·
1 Parent(s): 09f5472

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def user(message, history):
33
  history = history or []
34
  # Append the user's message to the conversation history
35
  history.append([message, ""])
36
- return "", history
37
 
38
 
39
  def chat1(history, system_message, max_tokens, temperature, top_p, top_k, repetition_penalty):
 
33
  history = history or []
34
  # Append the user's message to the conversation history
35
  history.append([message, ""])
36
+ return message, history
37
 
38
 
39
  def chat1(history, system_message, max_tokens, temperature, top_p, top_k, repetition_penalty):