robertselvam commited on
Commit
f723b1b
·
verified ·
1 Parent(s): 3d6fe90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -56,7 +56,7 @@ def get_response( candidate, chat_history, resume, jd):
56
  # chat_history.append({"candidate":candidate,"interviewer":answer.content })
57
 
58
  result = answer.content
59
- chat_history.append((f'candidate:{candidate}', result))
60
  print("chat_history", chat_history)
61
  return "", chat_history
62
 
 
56
  # chat_history.append({"candidate":candidate,"interviewer":answer.content })
57
 
58
  result = answer.content
59
+ chat_history.append((candidate, result))
60
  print("chat_history", chat_history)
61
  return "", chat_history
62