mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Feat: reference should also be list after 0.20.x (#9582)
### What problem does this PR solve? In 0.19.0 reference is list,and it should be a list,otherwise last conversation's reference will be lost ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -182,7 +182,7 @@ def completion(tenant_id, agent_id, session_id=None, **kwargs):
|
|||||||
yield "data:" + json.dumps(ans, ensure_ascii=False) + "\n\n"
|
yield "data:" + json.dumps(ans, ensure_ascii=False) + "\n\n"
|
||||||
|
|
||||||
conv.message.append({"role": "assistant", "content": txt, "created_at": time.time(), "id": message_id})
|
conv.message.append({"role": "assistant", "content": txt, "created_at": time.time(), "id": message_id})
|
||||||
conv.reference = canvas.get_reference()
|
conv.reference.append(canvas.get_reference())
|
||||||
conv.errors = canvas.error
|
conv.errors = canvas.error
|
||||||
conv.dsl = str(canvas)
|
conv.dsl = str(canvas)
|
||||||
conv = conv.to_dict()
|
conv = conv.to_dict()
|
||||||
|
|||||||
Reference in New Issue
Block a user