55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
# ============================================================
|
|
# 基于大语言模型的文档理解与多源数据融合系统
|
|
# Python 依赖清单
|
|
# ============================================================
|
|
|
|
# ==================== Web 框架 ====================
|
|
fastapi[all]==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.6
|
|
|
|
# ==================== 数据验证与配置 ====================
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
python-dotenv==1.0.0
|
|
|
|
# ==================== 数据库 - MySQL (结构化数据) ====================
|
|
pymysql==1.1.0
|
|
aiomysql==0.2.0
|
|
sqlalchemy==2.0.25
|
|
|
|
# ==================== 数据库 - MongoDB (非结构化数据) ====================
|
|
motor==3.3.2
|
|
pymongo==4.5.0
|
|
|
|
# ==================== 数据库 - Redis (缓存/队列) ====================
|
|
redis==5.0.0
|
|
|
|
# ==================== 异步任务 ====================
|
|
celery==5.3.4
|
|
|
|
# ==================== RAG / 向量数据库 ====================
|
|
# chromadb==0.4.22 # Windows 需要 C++ 编译环境,如需安装请使用预编译版本或 WSL
|
|
sentence-transformers==2.7.0
|
|
faiss-cpu==1.8.0
|
|
|
|
# ==================== 文档解析 ====================
|
|
pandas==2.1.4
|
|
openpyxl==3.1.2
|
|
python-docx==0.8.11
|
|
markdown-it-py==3.0.0
|
|
chardet==5.2.0
|
|
|
|
# ==================== AI / LLM ====================
|
|
httpx==0.25.2
|
|
|
|
# ==================== 数据处理与可视化 ====================
|
|
matplotlib==3.8.2
|
|
numpy==1.26.2
|
|
|
|
# ==================== 工具库 ====================
|
|
requests==2.31.0
|
|
loguru==0.7.2
|
|
tqdm==4.66.1
|
|
PyYAML==6.0.1
|