chitkenkhoi commited on
Commit
5f4fb72
·
1 Parent(s): 42cc103
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -178,12 +178,13 @@ Câu trả lời tôi muốn nhận được: Đối với hệ đại trà ngo
178
  }
179
  ]
180
  history = retrieve_conversation(conversation_id)
181
- messages.append({
182
- "role": "user",
183
- "content": history[-1]["q"]})
184
- messages.append({
185
- "role": "assistant",
186
- "content": history[-1]["a"] })
 
187
  if cid:
188
  messages.append({
189
  "role": "user",
 
178
  }
179
  ]
180
  history = retrieve_conversation(conversation_id)
181
+ if len(history) != 0:
182
+ messages.append({
183
+ "role": "user",
184
+ "content": history[-1]["q"]})
185
+ messages.append({
186
+ "role": "assistant",
187
+ "content": history[-1]["a"] })
188
  if cid:
189
  messages.append({
190
  "role": "user",