From df971a07c4c4b9f6e5e1ba6b966102f41b54c717 Mon Sep 17 00:00:00 2001
From: zhangxiao <898441624@qq.com>
Date: 星期三, 23 十月 2024 12:11:45 +0800
Subject: [PATCH] 修改excel的upload返回内容

---
 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