QuickLearnerAI commited on
Commit
7268d90
·
verified ·
1 Parent(s): e45ea87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ Answer the user's questions only based on the PDF content above. If the answer c
68
  messages= [
69
  {"role": "system", "content": system_message},
70
  ]
71
- for h_user , h_bot in history:
72
  messages.append({"role": "user", "content": h_user})
73
  messages.append({"role": "assistant", "content": h_bot})
74
 
 
68
  messages= [
69
  {"role": "system", "content": system_message},
70
  ]
71
+ for h_user, h_bot in history:
72
  messages.append({"role": "user", "content": h_user})
73
  messages.append({"role": "assistant", "content": h_bot})
74