Files
wechat-agent/requirements.txt
jesxion eb19d8d05f 初始化 WeChat Agent 项目
MVP Phase 1 核心模块:
- src/config/settings.py     - 配置管理
- src/vlm/qwen_vl.py        - Qwen-VL2 视觉模型接口
- src/wechat/controller.py  - 微信客户端控制器(UIAutomation)
- src/core/engine.py        - 核心引擎(轮询、消息处理、回复)
- src/main.py               - 主入口

文档:
- README.md
- config.example.yaml
- requirements.txt

技术方案:纯视觉AI + UIAutomation
- 截图 → Qwen-VL2 识别 → AI 判断 → UIAutomation 操作
2026-04-13 11:12:49 +08:00

27 lines
309 B
Plaintext

# WeChat Agent 依赖
# Windows UI 自动化
pywinauto>=0.6.8
pywin32>=305
# HTTP 请求
requests>=2.28.0
urllib3>=1.26.0
# 数据处理
pyyaml>=6.0
pillow>=9.0.0
# 异步(可选)
# asyncio
# aiohttp>=3.8.0
# 日志
# coloredlogs>=15.0 # 可选
# 测试
pytest>=7.0.0
# 类型检查
# mypy>=0.950