| | |
| | | from app.api import Response, get_current_user, ResponseList |
| | | from app.config.config import settings |
| | | from app.config.const import DOCUMENT_TO_REPORT, IMAGE_TO_TEXT, DOCUMENT_TO_REPORT_TITLE, DOCUMENT_IA_QUESTIONS, \ |
| | | DOCUMENT_TO_PAPER |
| | | DOCUMENT_TO_PAPER, DOCUMENT_IA_QUESTIONS_DS |
| | | from app.models import MenuCapacityModel |
| | | from app.models.agent_model import AgentType, AgentModel |
| | | from app.models.base_model import get_db |
| | |
| | | data = await dify_service.upload(token, file.filename, file_content, current_user.id) |
| | | except Exception as e: |
| | | raise HTTPException(status_code=500, detail=str(e)) |
| | | elif agent.chat_type == "reportWorkflow" or agent.chat_type == "documentIa" or agent.chat_type == "paperTalk": |
| | | elif agent.chat_type == "reportWorkflow" or agent.chat_type == "documentIa" or agent.chat_type == "paperTalk" or agent.chat_type == "documentIaDs": |
| | | token_dict = { |
| | | "reportWorkflow": DOCUMENT_TO_REPORT, |
| | | "reportWorkflow": DOCUMENT_TO_REPORT_TITLE, |
| | | "documentIa": DOCUMENT_IA_QUESTIONS, |
| | | "paperTalk": DOCUMENT_TO_PAPER, |
| | | "documentIaDs": DOCUMENT_IA_QUESTIONS_DS, |
| | | } |
| | | token = DfTokenDao(db).get_token_by_id(token_dict[agent.chat_type]) |
| | | if not token: |
| | |
| | | file_type: Optional[str] = Query(None, description="Optional file type for basic agents"), |
| | | db: Session = Depends(get_db) |
| | | ): |
| | | agent = db.query(AgentModel).filter(AgentModel.id == agent_id).first() |
| | | # agent = db.query(AgentModel).filter(AgentModel.id == agent_id).first() |
| | | agent = db.query(MenuCapacityModel).filter(MenuCapacityModel.chat_id == agent_id).first() |
| | | |
| | | if not agent: |
| | | return Response(code=404, msg="Agent not found") |
| | | |
| | | if agent.agent_type == AgentType.BISHENG: |
| | | agent_type = int(agent.capacity_type) |
| | | if agent_type == AgentType.BISHENG: |
| | | url = urllib.parse.unquote(url) |
| | | # 从 URL 中提取文件名 |
| | | parsed_url = urllib.parse.urlparse(url) |
| | | filename = urllib.parse.unquote(parsed_url.path.split('/')[-1]) |
| | | url = url.replace("http://minio:9000", settings.sgb_base_url) |
| | | elif agent.agent_type == AgentType.RAGFLOW: |
| | | elif agent_type == AgentType.RAGFLOW: |
| | | if not doc_id: |
| | | return Response(code=400, msg="doc_id is required") |
| | | url = f"{settings.fwr_base_url}/v1/document/get/{doc_id}" |
| | | filename = doc_name |
| | | elif agent.agent_type == AgentType.BASIC: |
| | | elif agent_type == AgentType.BASIC: |
| | | if agent_id == "basic_excel_talk": |
| | | return await download_basic_file(file_id, file_type) |
| | | |