requirements.txt 536 B

12345678910111213141516171819202122232425
  1. # RAG系统依赖包
  2. # 使用清华源加速安装: pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  3. # LangChain 核心组件
  4. langchain>=0.1.0
  5. langchain-community>=0.0.20
  6. langchain-core>=0.1.20
  7. langchain-text-splitters>=0.0.1
  8. langchain-openai>=0.1.0
  9. # PDF 处理
  10. pymupdf>=1.23.0
  11. # 向量数据库
  12. chromadb>=0.4.0
  13. # 阿里云 DashScope (通义千问 Embedding)
  14. dashscope>=1.14.0
  15. # 环境变量管理
  16. python-dotenv>=1.0.0
  17. # 可选依赖(如果需要使用其他功能)
  18. # pandas>=2.0.0
  19. # numpy>=1.24.0