12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # LangChain 核心依赖
- langchain>=0.1.0
- langchain-openai>=0.0.5
- langchain-community>=0.0.10
- # LLM 提供商
- openai>=1.0.0
- anthropic>=0.7.0
- # 向量数据库
- chromadb>=0.4.0
- # faiss-cpu>=1.7.0 # 需要SWIG编译器,暂时注释
- # 文档处理
- pypdf>=3.15.0
- python-docx>=0.8.11
- markdown>=3.4.0
- # 工具和工具包
- requests>=2.31.0
- beautifulsoup4>=4.12.0
- selenium>=4.15.0
- # 数据处理
- pandas>=2.0.0
- numpy>=1.24.0
- # 配置管理
- python-dotenv>=1.0.0
- pydantic>=2.0.0
- pydantic-settings>=2.0.0
- # 日志和监控
- loguru>=0.7.0
- # 测试
- pytest>=7.4.0
- pytest-asyncio>=0.21.0
- # 开发工具(可选)
- # black>=23.0.0
- # isort>=5.12.0
- # flake8>=6.0.0
|