Metadata-Version: 2.4
Name: wechat-agent
Version: 0.0.3
Project-URL: Documentation, https://gitee.com/zjwan461/wechat-agent#readme
Project-URL: Issues, https://gitee.com/zjwan461/wechat-agent/issues
Project-URL: Source, https://gitee.com/zjwan461/wechat-agent
Author-email: jerry <826935261@qq.com>
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.11
Requires-Dist: flask~=3.1.2
Requires-Dist: gputil~=1.4.0
Requires-Dist: langchain-community~=0.3.21
Requires-Dist: langchain-community~=0.3.27
Requires-Dist: langchain-core~=0.3.76
Requires-Dist: langchain-experimental~=0.3.4
Requires-Dist: langchain-ollama~=0.3.8
Requires-Dist: langchain-openai~=0.3.16
Requires-Dist: langchain-text-splitters~=0.3.11
Requires-Dist: langchain~=0.3.27
Requires-Dist: openai~=1.108.0
Requires-Dist: pyjwt~=2.10.1
Requires-Dist: waitress~=3.0.2
Requires-Dist: wmi~=1.5.1
Requires-Dist: wxauto4~=40.1.1
Requires-Dist: wxauto~=39.1.16
Description-Content-Type: text/markdown

# wechat-agent

wechat-agent是一个Windows平台下能够自动化回复微信消息的代理应用程序。可以使用它来自动回复一些规则下的微信消息。wechat-agent提供两种代理模式。
1. 指定回复（简单）模式
2. AI回复（AI问答）模式

-----

## 说明

- [安装](#安装)
- [运行](#运行)

## 安装

### 本地开发依赖安装

```shell
git clone https://gitee.com/zjwan461/wechat-agent.git
cd wechat-agent
pip install -e .
cd ui
npm install
```
浏览器访问 http://127.0.0.1:8001/ui

### 直接安装
```shell
pip install wechat-agent
```
运行
```shell
wechat-agent
```
浏览器访问 http://127.0.0.1:8080/ui/index.html

## 运行

开发接入

```shell
# 前端
cd ui
npm run dev
# 后端
python main.py
```

