Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
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):
|