requirements-minimal.txt 424 B

1234567891011121314151617181920212223242526272829303132
  1. # 核心依赖 - 最小化版本
  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. # 文档处理
  11. pypdf>=3.15.0
  12. python-docx>=0.8.11
  13. # 基础工具
  14. requests>=2.31.0
  15. # 数据处理
  16. numpy>=1.24.0
  17. # 配置管理
  18. python-dotenv>=1.0.0
  19. pydantic>=2.0.0
  20. pydantic-settings>=2.0.0
  21. # 日志
  22. loguru>=0.7.0
  23. # 测试
  24. pytest>=7.4.0