requirements.txt 550 B

1234567891011121314151617181920212223242526272829
  1. # 合同信息提取系统 - 依赖包
  2. # 核心依赖
  3. pandas>=2.0.0
  4. openpyxl>=3.1.0
  5. python-docx>=1.1.0
  6. docx2txt>=0.8
  7. # LLM 客户端
  8. openai>=1.0.0
  9. # 文件监控
  10. watchdog>=4.0.0
  11. # Token 计算
  12. tiktoken>=0.5.0
  13. # 压缩文件支持
  14. py7zr>=0.20.0
  15. rarfile>=4.2
  16. # 可选依赖(用于读取.xls 文件)
  17. # xlrd>=2.0.0
  18. # 可选依赖(用于读取.doc 文件,Linux/macOS 需要安装 antiword)
  19. # antiword 系统命令:
  20. # macOS: brew install antiword
  21. # Linux: apt-get install antiword
  22. # Windows: 下载二进制文件并添加到 PATH