text/pyproject.toml
fa7656ae0d feat: 重构项目结构并添加垃圾短信分类系统核心功能
- 重构项目目录结构,添加src目录包含data/models/agent/llm模块
- 实现数据预处理、验证和分割功能
- 添加机器学习模型训练和预测功能
- 实现LLM服务集成DeepSeek API
- 构建Agent框架实现工具调用和结果整合
- 添加Streamlit可视化应用
- 更新项目配置和依赖管理
- 删除无用文件和旧实现代码
2026-01-15 12:16:42 +08:00

23 lines
576 B
TOML

[project]
name = "spam-classification-system"
version = "0.1.0"
description = "垃圾短信分类系统 - 传统机器学习 + LLM + Agent"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"polars>=0.20.0",
"pandas>=2.2.0",
"pandera>=0.18.0",
"scikit-learn>=1.3.0",
"lightgbm>=4.0.0",
"openai>=1.0.0",
"pydantic>=2.0.0",
"pydantic-ai>=0.1.0",
"streamlit>=1.20.0",
"seaborn>=0.13.0",
"python-dotenv>=1.0.0",
"nltk>=3.8.0"
]
[[tool.uv.index]]
name = "tencent"
url = "https://mirrors.cloud.tencent.com/pypi/simple/"