robertselvam commited on
Commit
fc51d0d
·
verified ·
1 Parent(s): 8b824c8

Update app.py

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