From e642b762d7e62837a863f2d2963793cd633b8ac7 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 18 十月 2024 11:53:31 +0800 Subject: [PATCH] json解析失败的消息忽略 --- app/api/chat.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/api/chat.py b/app/api/chat.py index 07a05da..2fdbd44 100644 --- a/app/api/chat.py +++ b/app/api/chat.py @@ -65,7 +65,6 @@ }) async for rag_response in ragflow_service.chat(token, chat_id, chat_history): try: - print(f"Received from ragflow: {rag_response}") if rag_response[:5] == "data:": # 濡傛灉鏄紝鍒欐埅鍙栨帀鍓�5涓瓧绗︼紝骞跺幓闄ら灏剧┖鐧界 text = rag_response[5:].strip() @@ -83,10 +82,11 @@ else: # 姝e父杈撳嚭 answer = data.get("answer", "") result = {"message": answer, "type": "message"} + await websocket.send_json(result) except json.JSONDecodeError: - result = {"message": text, "type": "message"} - await websocket.send_json(result) - print(f"Forwarded to client {chat_id}: {result}") + print(f"Error decode ragflow response: {text}") + pass + except Exception as e: result = {"message": f"鍐呴儴閿欒锛� {e}", "type": "close"} await websocket.send_json(result) -- Gitblit v1.8.0