rohan13 commited on
Commit
21ed367
1 Parent(s): ab7c0d6

Fixing history on upload

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -199,7 +199,7 @@ def upload_grading_results(file, history):
199
  # Copy the uploaded file from its temporary location to the desired location
200
  shutil.copyfile(file.name, path)
201
  grader_qa = CSVAgent(llm, embeddings, path)
202
- history = [(None, 'Grading results uploaded successfully')]
203
  return history
204
 
205
 
 
199
  # Copy the uploaded file from its temporary location to the desired location
200
  shutil.copyfile(file.name, path)
201
  grader_qa = CSVAgent(llm, embeddings, path)
202
+ history = [(None, 'Grading results uploaded successfully. Start Chatting!')]
203
  return history
204
 
205