├── LICENSE ├── README.md ├── app.py ├── bot ├── baidu │ └── baidu_unit_bot.py ├── bot.py ├── bot_factory.py ├── chatgpt │ └── chat_gpt_bot.py └── openai │ └── open_ai_bot.py ├── bridge └── bridge.py ├── channel ├── channel.py ├── channel_factory.py ├── wechat │ └── wechat_channel.py └── wechatcom │ └── wechatenterprise_channel.py ├── common └── log.py ├── config-template.json ├── config.py └── requirement.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/app.py -------------------------------------------------------------------------------- /bot/baidu/baidu_unit_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bot/baidu/baidu_unit_bot.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/bot_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bot/bot_factory.py -------------------------------------------------------------------------------- /bot/chatgpt/chat_gpt_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bot/chatgpt/chat_gpt_bot.py -------------------------------------------------------------------------------- /bot/openai/open_ai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bot/openai/open_ai_bot.py -------------------------------------------------------------------------------- /bridge/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/bridge/bridge.py -------------------------------------------------------------------------------- /channel/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/channel/channel.py -------------------------------------------------------------------------------- /channel/channel_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/channel/channel_factory.py -------------------------------------------------------------------------------- /channel/wechat/wechat_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/channel/wechat/wechat_channel.py -------------------------------------------------------------------------------- /channel/wechatcom/wechatenterprise_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/channel/wechatcom/wechatenterprise_channel.py -------------------------------------------------------------------------------- /common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/common/log.py -------------------------------------------------------------------------------- /config-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/config-template.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostlittlebee/chatgpt-on-wecom/HEAD/config.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | wechatpy 2 | openai 3 | pycryptodome 4 | flask 5 | 6 | --------------------------------------------------------------------------------