Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,8 +34,8 @@ def chat(p, qid, uid):
|
|
34 |
|
35 |
|
36 |
def callapi(p, msgs):
|
37 |
-
if (len(msgs) >
|
38 |
-
msgs = msgs[-
|
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:
|