From 572e8580e498a391c10a7f923c465e3c7089d44b Mon Sep 17 00:00:00 2001
From: zhangxiao <898441624@qq.com>
Date: 星期三, 23 十月 2024 21:21:54 +0800
Subject: [PATCH] 文件上传问题修改
---
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