Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ def chat(message, history):
|
|
106 |
history_useful = add_note_to_history(response, history_useful)
|
107 |
list_history = history_useful[0].split('</s> <s>')
|
108 |
history.append((list_history[-2], list_history[-1]))
|
109 |
-
store_message(message, response) # Save to dataset
|
110 |
return history, history
|
111 |
|
112 |
gr.Interface(
|
|
|
106 |
history_useful = add_note_to_history(response, history_useful)
|
107 |
list_history = history_useful[0].split('</s> <s>')
|
108 |
history.append((list_history[-2], list_history[-1]))
|
109 |
+
# store_message(message, response) # Save to dataset -- uncomment with code above, create a dataset to store and add your HF_TOKEN from profile to this repo to use.
|
110 |
return history, history
|
111 |
|
112 |
gr.Interface(
|