AeroXi commited on
Commit
fdd1957
·
1 Parent(s): 466e47d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,8 +34,8 @@ def chat(p, qid, uid):
34
 
35
 
36
  def callapi(p, msgs):
37
- if (len(msgs) > 8): #简单 hard-code 8 回合对话。如果需要更精准的,应该计算 token 数
38
- msgs = msgs[-8:]
39
 
40
  data = [{"role":"system", "content":prompt}]
41
  for m in msgs:
 
34
 
35
 
36
  def callapi(p, msgs):
37
+ if (len(msgs) > 20): #简单 hard-code 8 回合对话。如果需要更精准的,应该计算 token 数
38
+ msgs = msgs[-20:]
39
 
40
  data = [{"role":"system", "content":prompt}]
41
  for m in msgs: