|
@@ -10,6 +10,7 @@ from app.config.config import settings
|
|
|
from app.models.agent_model import AgentModel, AgentType
|
|
from app.models.agent_model import AgentModel, AgentType
|
|
|
from app.models.base_model import get_db
|
|
from app.models.base_model import get_db
|
|
|
from app.models.user_model import UserModel
|
|
from app.models.user_model import UserModel
|
|
|
|
|
+from app.service.dialog import update_session_history
|
|
|
from app.service.ragflow import RagflowService
|
|
from app.service.ragflow import RagflowService
|
|
|
from app.service.service_token import get_bisheng_token, get_ragflow_token
|
|
from app.service.service_token import get_bisheng_token, get_ragflow_token
|
|
|
|
|
|
|
@@ -44,6 +45,7 @@ async def handle_client(websocket: WebSocket,
|
|
|
try:
|
|
try:
|
|
|
async def forward_to_ragflow():
|
|
async def forward_to_ragflow():
|
|
|
while True:
|
|
while True:
|
|
|
|
|
+ is_new = False
|
|
|
message = await websocket.receive_json()
|
|
message = await websocket.receive_json()
|
|
|
print(f"Received from client {chat_id}: {message}")
|
|
print(f"Received from client {chat_id}: {message}")
|
|
|
chat_history = message.get('chatHistory', [])
|
|
chat_history = message.get('chatHistory', [])
|
|
@@ -51,9 +53,10 @@ async def handle_client(websocket: WebSocket,
|
|
|
if len(chat_history) == 0:
|
|
if len(chat_history) == 0:
|
|
|
chat_history = await ragflow_service.get_session_history(token, chat_id)
|
|
chat_history = await ragflow_service.get_session_history(token, chat_id)
|
|
|
if len(chat_history) == 0:
|
|
if len(chat_history) == 0:
|
|
|
|
|
+ is_new = True
|
|
|
chat_history = await ragflow_service.set_session(token, agent_id,
|
|
chat_history = await ragflow_service.set_session(token, agent_id,
|
|
|
message, chat_id, True)
|
|
message, chat_id, True)
|
|
|
- print("chat_history------------------------", chat_history)
|
|
|
|
|
|
|
+ # print("chat_history------------------------", chat_history)
|
|
|
if len(chat_history) == 0:
|
|
if len(chat_history) == 0:
|
|
|
result = {"message": "内部错误:创建会话失败", "type": "close"}
|
|
result = {"message": "内部错误:创建会话失败", "type": "close"}
|
|
|
await websocket.send_json(result)
|
|
await websocket.send_json(result)
|
|
@@ -91,11 +94,14 @@ async def handle_client(websocket: WebSocket,
|
|
|
complete_response = ""
|
|
complete_response = ""
|
|
|
except json.JSONDecodeError as e:
|
|
except json.JSONDecodeError as e:
|
|
|
print(f"Error decoding JSON: {e}")
|
|
print(f"Error decoding JSON: {e}")
|
|
|
- print(f"Response text: {text}")
|
|
|
|
|
|
|
+ # print(f"Response text: {text}")
|
|
|
except Exception as e2:
|
|
except Exception as e2:
|
|
|
result = {"message": f"内部错误: {e2}", "type": "close"}
|
|
result = {"message": f"内部错误: {e2}", "type": "close"}
|
|
|
await websocket.send_json(result)
|
|
await websocket.send_json(result)
|
|
|
print(f"Error process message of ragflow: {e2}")
|
|
print(f"Error process message of ragflow: {e2}")
|
|
|
|
|
+ dialog_chat_history = await ragflow_service.get_session_history(token, chat_id, 1)
|
|
|
|
|
+ await update_session_history(db, dialog_chat_history, current_user.id, is_new)
|
|
|
|
|
+
|
|
|
# 启动任务处理客户端消息
|
|
# 启动任务处理客户端消息
|
|
|
tasks = [
|
|
tasks = [
|
|
|
asyncio.create_task(forward_to_ragflow())
|
|
asyncio.create_task(forward_to_ragflow())
|