From 95bfccca0260a6ff3e994ebbbbfafb61b7dab442 Mon Sep 17 00:00:00 2001 From: zhaoqingang <zhaoqg0118@163.com> Date: 星期五, 22 十一月 2024 10:11:51 +0800 Subject: [PATCH] merge --- app/api/chat.py | 79 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 79 insertions(+), 0 deletions(-) diff --git a/app/api/chat.py b/app/api/chat.py index ea1be48..e4a439d 100644 --- a/app/api/chat.py +++ b/app/api/chat.py @@ -5,14 +5,18 @@ import asyncio import websockets from sqlalchemy.orm import Session + +from Log import logger from app.api import get_current_user_websocket from app.config.config import settings from app.models.agent_model import AgentModel, AgentType from app.models.base_model import get_db from app.models.user_model import UserModel from app.service.dialog import update_session_history +from app.service.basic import BasicService from app.service.ragflow import RagflowService from app.service.service_token import get_bisheng_token, get_ragflow_token +from app.service.session import SessionService router = APIRouter() @@ -196,6 +200,81 @@ await task except asyncio.CancelledError: pass + elif agent_type == AgentType.BASIC: + try: + service = BasicService(base_url=settings.basic_base_url) + while True: + # 鎺ユ敹鍓嶇娑堟伅 + message = await websocket.receive_json() + question = message.get("message") + try: + SessionService(db).create_session( + chat_id, + question, + agent_id, + AgentType.BASIC, + current_user.id + ) + except Exception as e: + logger.error(e) + if not question: + await websocket.send_json({"message": "Invalid request", "type": "error"}) + continue + logger.error(agent.type) + if agent.type == "questionTalk": + + try: + data = await service.questions_talk(question, chat_id) + output = data.get("output", "") + file_name = data.get("filename", "") + + excel_url = None + if file_name: + excel_url = f"/api/files/download/?agent_id=basic_question_talk&file_id={file_name}&file_type=word" + result = {"message": output, "type": "message", "file_url": excel_url} + try: + SessionService(db).update_session(chat_id, + message={"role": "assistant", "content": result}) + except Exception as e: + logger.error(e) + logger.error("-----------------杩斿洖鏁版嵁--------------------") + await websocket.send_json(result | data) + except Exception as e2: + + result = {"message": f"鍐呴儴閿欒锛� {e2}", "type": "close"} + logger.error(str(e2)) + logger.error(f"Error process message of basic chuti agent: {e2}") + await websocket.send_json(result) + + else: + async for data in service.excel_talk(question, chat_id): + output = data.get("output", "") + excel_name = data.get("excel_name", "") + image_name = data.get("image_name", "") + + def build_file_url(name, file_type): + if not name: + return None + return (f"/api/files/download/?agent_id={agent_id}&file_id={name}" + f"&file_type={file_type}") + excel_url = build_file_url(excel_name, 'excel') + image_url = build_file_url(image_name, 'image') + try: + SessionService(db).update_session(chat_id, message={"content": output, "role": "assistant"}) + except Exception as e: + logger.error(f"Unexpected error when update_session: {e}") + # 鍙戦�佺粨鏋滅粰瀹㈡埛绔� + data["type"] = "message" + data["message"] = output + data["excel_url"] = excel_url + data["image_url"] = image_url + await websocket.send_json(data) + except Exception as e: + logger.error(e) + await websocket.send_json({"message": "鍑虹幇閿欒锛�", "type": "error"}) + finally: + await websocket.close() + print(f"Client {agent_id} disconnected") else: ret = {"message": "Agent not found", "type": "close"} await websocket.send_json(ret) -- Gitblit v1.8.0