├── .gitignore ├── DeepWechat.py ├── README.md ├── Util.py ├── api_key.json.example ├── main.py └── promot.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/.gitignore -------------------------------------------------------------------------------- /DeepWechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/DeepWechat.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/README.md -------------------------------------------------------------------------------- /Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/Util.py -------------------------------------------------------------------------------- /api_key.json.example: -------------------------------------------------------------------------------- 1 | { 2 | "api_key" : "到deepseek官网申请apikey,填写在此处,并将此文件重命名,去掉后缀.example" 3 | } -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/main.py -------------------------------------------------------------------------------- /promot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maicius/DeepseekWechatBot/HEAD/promot.json --------------------------------------------------------------------------------