requirements.txt 657 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # LangChain 核心依赖
  2. langchain>=0.1.0
  3. langchain-openai>=0.0.5
  4. langchain-community>=0.0.10
  5. # LLM 提供商
  6. openai>=1.0.0
  7. anthropic>=0.7.0
  8. # 向量数据库
  9. chromadb>=0.4.0
  10. # faiss-cpu>=1.7.0 # 需要SWIG编译器,暂时注释
  11. # 文档处理
  12. pypdf>=3.15.0
  13. python-docx>=0.8.11
  14. markdown>=3.4.0
  15. # 工具和工具包
  16. requests>=2.31.0
  17. beautifulsoup4>=4.12.0
  18. selenium>=4.15.0
  19. # 数据处理
  20. pandas>=2.0.0
  21. numpy>=1.24.0
  22. # 配置管理
  23. python-dotenv>=1.0.0
  24. pydantic>=2.0.0
  25. pydantic-settings>=2.0.0
  26. # 日志和监控
  27. loguru>=0.7.0
  28. # 测试
  29. pytest>=7.4.0
  30. pytest-asyncio>=0.21.0
  31. # 开发工具(可选)
  32. # black>=23.0.0
  33. # isort>=5.12.0
  34. # flake8>=6.0.0