微信机器人底层框架,可接入Gemini、ChatGPT、ChatGLM、讯飞星火、Tigerbot等大模型。WeChat Robot Hook.
Go to file
2021-08-22 21:15:49 +08:00
App Initial commit 2021-02-12 23:21:57 +08:00
Rpc Initial commit 2021-02-12 23:21:57 +08:00
SDK Initial commit 2021-02-12 23:21:57 +08:00
SDKpy Initial commit 2021-02-12 23:21:57 +08:00
Spy Disable multiple version adapting 2021-08-22 21:15:49 +08:00
.editorconfig Initial commit 2021-02-12 23:21:57 +08:00
.gitignore Initial commit 2021-02-12 23:21:57 +08:00
README.MD Initial commit 2021-02-12 23:21:57 +08:00
WeChatFerry.sln Initial commit 2021-02-12 23:21:57 +08:00

WeChatFerry

传送信息往返微信的摆渡车。

快速开始

  1. 使用 VS2019 编译。
  2. 打开 CMD,运行 App.exe

项目结构

Spy

间谍模块,注入到微信中,通过 RPC 做消息转发工作。

SDK

RPC 的客户端,封装接口,供其他方调用。

SDKpy

用于生成 Python 接口。为编译该项目,需要做一些配置:

  1. 添加附加包含目录
  • Python 头:C:\Program Files (x86)\Python37-32\Include
  • Pybind11 头:C:\Projs\.pyenv\pybind11\lib\site-packages\pybind11\include
    1. pybind11 可以通过 Python 安装(本工程安装到虚拟环境里了):pip install pybind11
    2. 然后通过命令查找:python -m pybind11 --includes
  1. 添加 Python 的库
  • C:\Program Files (x86)\Python37-32\libs

App

示例应用,介绍如何调用 SDK。