awacke1 commited on
Commit
d6a03a8
·
1 Parent(s): ae69d15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -227,8 +227,8 @@ def predict(inputs, top_p, temperature, chat_counter, chatbot=[], history=[]):
227
 
228
  df=pd.DataFrame()
229
  if UseMemory:
230
- outputfileName = 'ChatbotMemory3.csv' # Test first time file create
231
- df = store_message(inputs, chat, outputfileName) # Save to dataset
232
  basedir = get_base(outputfileName)
233
  #return history, df, basedir
234
 
 
227
 
228
  df=pd.DataFrame()
229
  if UseMemory:
230
+ outputfileName = 'ChatGPT-RLHF-Memory.csv' # Test first time file create
231
+ df = store_message(chat, history, outputfileName) # Save to dataset
232
  basedir = get_base(outputfileName)
233
  #return history, df, basedir
234