From b832372c98c0042fef34843c5cc1f07d83c0cdf5 Mon Sep 17 00:00:00 2001 From: Stephen Hu Date: Wed, 4 Jun 2025 10:18:14 +0800 Subject: [PATCH] Fix: /v1/conversation/completion KeyError: 'conversation_id' (#8037) ### What problem does this PR solve? Close #8033 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- api/apps/conversation_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/apps/conversation_app.py b/api/apps/conversation_app.py index 29f3fa96c..5ba39716f 100644 --- a/api/apps/conversation_app.py +++ b/api/apps/conversation_app.py @@ -249,7 +249,7 @@ def completion(): else: answer = None for ans in chat(dia, msg, **req): - answer = structure_answer(conv, ans, message_id, req["conversation_id"]) + answer = structure_answer(conv, ans, message_id, conv.id) ConversationService.update_by_id(conv.id, conv.to_dict()) break return get_json_result(data=answer)