awacke1 commited on
Commit
d0c9a0f
·
1 Parent(s): 5816dc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(