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 |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app/api/chat.py b/app/api/chat.py
index 1e9218c..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()
@@ -79,14 +78,15 @@
                                     result = {"message": "", "type": "close"}
                                 elif data is None:  # 鍙戠敓閿欒
                                     answer = json_data.get("retmsg", json_data.get("retcode"))
-                                    result = {"message": "鍐呴儴閿欒锛�" + answer, "type": "stream"}
+                                    result = {"message": "鍐呴儴閿欒锛�" + answer, "type": "message"}
                                 else:  # 姝e父杈撳嚭
                                     answer = data.get("answer", "")
-                                    result = {"message": answer, "type": "stream"}
+                                    result = {"message": answer, "type": "message"}
+                                await websocket.send_json(result)
                             except json.JSONDecodeError:
-                                result = {"message": text, "type": "stream"}
-                            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