From 6202db458678153934fb4a31a041c58764a69138 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期五, 18 十月 2024 22:59:51 +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