├── .flake8 ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── bot ├── ali │ ├── ali_qwen_bot.py │ └── ali_qwen_session.py ├── baidu │ ├── baidu_unit_bot.py │ ├── baidu_wenxin.py │ └── baidu_wenxin_session.py ├── bot.py ├── bot_factory.py ├── bytedance │ ├── bytedance_coze_bot.py │ ├── coze_client.py │ └── coze_session.py ├── chatgpt │ ├── chat_gpt_bot.py │ └── chat_gpt_session.py ├── claude │ ├── claude_ai_bot.py │ └── claude_ai_session.py ├── claudeapi │ └── claude_api_bot.py ├── dashscope │ ├── dashscope_bot.py │ └── dashscope_session.py ├── deepseek │ ├── __init__.py │ ├── deepseek_bot.py │ └── deepseek_session.py ├── dify │ ├── dify_bot.py │ └── dify_session.py ├── gemini │ ├── README.md │ └── google_gemini_bot.py ├── linkai │ └── link_ai_bot.py ├── minimax │ ├── minimax_bot.py │ └── minimax_session.py ├── modelscope │ ├── modelscope_bot.py │ └── modelscope_session.py ├── moonshot │ ├── moonshot_bot.py │ └── moonshot_session.py ├── openai │ ├── open_ai_bot.py │ ├── open_ai_image.py │ ├── open_ai_session.py │ └── open_ai_vision.py ├── session_manager.py ├── xunfei │ └── xunfei_spark_bot.py └── zhipuai │ ├── zhipu_ai_image.py │ ├── zhipu_ai_session.py │ └── zhipuai_bot.py ├── bridge ├── bridge.py ├── context.py └── reply.py ├── channel ├── channel.py ├── channel_factory.py ├── chat_channel.py ├── chat_message.py ├── dingtalk │ ├── dingtalk_channel.py │ └── dingtalk_message.py ├── feishu │ ├── feishu_channel.py │ └── feishu_message.py ├── terminal │ └── terminal_channel.py ├── web │ ├── README.md │ ├── chat.html │ └── web_channel.py ├── wechat │ ├── wcf_channel.py │ ├── wcf_message.py │ ├── wechat_channel.py │ ├── wechat_message.py │ ├── wechaty_channel.py │ └── wechaty_message.py ├── wechatcom │ ├── README.md │ ├── wechatcomapp_channel.py │ ├── wechatcomapp_client.py │ └── wechatcomapp_message.py ├── wechatcs │ ├── README.md │ ├── wechatcomservice_channel.py │ ├── wechatcomservice_client.py │ └── wechatcomservice_message.py ├── wechatmp │ ├── README.md │ ├── active_reply.py │ ├── common.py │ ├── passive_reply.py │ ├── wechatmp_channel.py │ ├── wechatmp_client.py │ └── wechatmp_message.py ├── wework │ ├── run.py │ ├── wework_channel.py │ └── wework_message.py └── wxpad │ ├── wxpad_channel.py │ └── wxpad_message.py ├── common ├── const.py ├── dequeue.py ├── expired_dict.py ├── linkai_client.py ├── log.py ├── memory.py ├── package_manager.py ├── singleton.py ├── sorted_dict.py ├── time_check.py ├── tmp_cleaner.py ├── tmp_dir.py ├── token_bucket.py └── utils.py ├── config-template.json ├── config.py ├── database └── group_members_db.py ├── docker ├── Dockerfile.latest ├── build.latest.sh ├── docker-compose.yml └── entrypoint.sh ├── docs ├── audios │ ├── chengdu-disney.mp3 │ └── gewechat_voice.mp3 ├── images │ ├── NLP工程化.png │ ├── auto-coder-1.jpg │ ├── auto-coder-2.jpg │ ├── image1.jpg │ ├── image2.jpg │ ├── image4.jpg │ ├── image5.jpg │ ├── image6.jpg │ ├── plugin-suno-1.jpg │ ├── plugin-suno-2.jpg │ ├── supportme.jpg │ ├── wechat.jpg │ ├── wechat_group_1.jpg │ ├── wechat_group_2.jpg │ └── wework.jpg ├── tmp_cleanup.md ├── user-info │ ├── README.md │ ├── import-user-info-dsl.jpg │ ├── user-info-fields.jpg │ ├── user-info-room.jpg │ └── user-info-single.jpg ├── version │ └── old-version.md └── webui │ └── README.md ├── dsl ├── chat-workflow.yml └── 用户信息.yml ├── lib ├── dify │ └── dify_client.py ├── itchat │ ├── LICENSE │ ├── __init__.py │ ├── async_components │ │ ├── __init__.py │ │ ├── contact.py │ │ ├── hotreload.py │ │ ├── login.py │ │ ├── messages.py │ │ └── register.py │ ├── components │ │ ├── __init__.py │ │ ├── contact.py │ │ ├── hotreload.py │ │ ├── login.py │ │ ├── messages.py │ │ └── register.py │ ├── config.py │ ├── content.py │ ├── core.py │ ├── log.py │ ├── returnvalues.py │ ├── storage │ │ ├── __init__.py │ │ ├── messagequeue.py │ │ └── templates.py │ └── utils.py └── wxpad │ ├── __init__.py │ └── client.py ├── nixpacks.toml ├── plugins ├── README.md ├── __init__.py ├── banwords │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── banwords.py │ ├── banwords.txt.template │ ├── config.json.template │ └── lib │ │ └── WordsSearch.py ├── bdunit │ ├── README.md │ ├── __init__.py │ ├── bdunit.py │ └── config.json.template ├── config.json.template ├── custom_dify_app │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ └── custom_dify_app.py ├── dungeon │ ├── README.md │ ├── __init__.py │ └── dungeon.py ├── event.py ├── finish │ ├── __init__.py │ └── finish.py ├── godcmd │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ └── godcmd.py ├── hello │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ └── hello.py ├── jina_sum │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ ├── docs │ │ └── images │ │ │ ├── csdn.jpg │ │ │ ├── red.jpg │ │ │ ├── sum.jpg │ │ │ └── wechat_mp.jpg │ ├── jina_sum.py │ └── requirements.txt ├── keyword │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ ├── keyword.py │ ├── test-keyword-more_replies.png │ └── test-keyword.png ├── linkai │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ ├── linkai.py │ ├── midjourney.py │ ├── summary.py │ └── utils.py ├── plugin.py ├── plugin_manager.py ├── role │ ├── README.md │ ├── __init__.py │ ├── role.py │ └── roles.json ├── source.json └── tool │ ├── README.md │ ├── __init__.py │ ├── config.json.template │ └── tool.py ├── pyproject.toml ├── requirements-optional.txt ├── requirements.txt ├── scripts ├── shutdown.sh ├── start.sh └── tout.sh ├── start.sh ├── stop.sh ├── tail_log.sh ├── tests └── test_utils.py ├── translate ├── baidu │ └── baidu_translate.py ├── factory.py └── translator.py ├── voice ├── ali │ ├── ali_api.py │ ├── ali_voice.py │ └── config.json.template ├── audio_convert.py ├── azure │ ├── azure_voice.py │ └── config.json.template ├── baidu │ ├── README.md │ ├── baidu_voice.py │ └── config.json.template ├── dify │ └── dify_voice.py ├── edge │ └── edge_voice.py ├── elevent │ └── elevent_voice.py ├── factory.py ├── google │ └── google_voice.py ├── linkai │ └── linkai_voice.py ├── openai │ └── openai_voice.py ├── pytts │ └── pytts_voice.py ├── tencent │ ├── config.json.template │ └── tencent_voice.py ├── voice.py └── xunfei │ ├── config.json.template │ ├── xunfei_asr.py │ ├── xunfei_tts.py │ └── xunfei_voice.py └── web_ui.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/.flake8 -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM hanfangyuan4396/dify-on-wechat:latest 2 | 3 | ENTRYPOINT ["/entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/app.py -------------------------------------------------------------------------------- /bot/ali/ali_qwen_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/ali/ali_qwen_bot.py -------------------------------------------------------------------------------- /bot/ali/ali_qwen_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/ali/ali_qwen_session.py -------------------------------------------------------------------------------- /bot/baidu/baidu_unit_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/baidu/baidu_unit_bot.py -------------------------------------------------------------------------------- /bot/baidu/baidu_wenxin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/baidu/baidu_wenxin.py -------------------------------------------------------------------------------- /bot/baidu/baidu_wenxin_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/baidu/baidu_wenxin_session.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/bot_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/bot_factory.py -------------------------------------------------------------------------------- /bot/bytedance/bytedance_coze_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/bytedance/bytedance_coze_bot.py -------------------------------------------------------------------------------- /bot/bytedance/coze_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/bytedance/coze_client.py -------------------------------------------------------------------------------- /bot/bytedance/coze_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/bytedance/coze_session.py -------------------------------------------------------------------------------- /bot/chatgpt/chat_gpt_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/chatgpt/chat_gpt_bot.py -------------------------------------------------------------------------------- /bot/chatgpt/chat_gpt_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/chatgpt/chat_gpt_session.py -------------------------------------------------------------------------------- /bot/claude/claude_ai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/claude/claude_ai_bot.py -------------------------------------------------------------------------------- /bot/claude/claude_ai_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/claude/claude_ai_session.py -------------------------------------------------------------------------------- /bot/claudeapi/claude_api_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/claudeapi/claude_api_bot.py -------------------------------------------------------------------------------- /bot/dashscope/dashscope_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/dashscope/dashscope_bot.py -------------------------------------------------------------------------------- /bot/dashscope/dashscope_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/dashscope/dashscope_session.py -------------------------------------------------------------------------------- /bot/deepseek/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/deepseek/__init__.py -------------------------------------------------------------------------------- /bot/deepseek/deepseek_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/deepseek/deepseek_bot.py -------------------------------------------------------------------------------- /bot/deepseek/deepseek_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/deepseek/deepseek_session.py -------------------------------------------------------------------------------- /bot/dify/dify_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/dify/dify_bot.py -------------------------------------------------------------------------------- /bot/dify/dify_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/dify/dify_session.py -------------------------------------------------------------------------------- /bot/gemini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/gemini/README.md -------------------------------------------------------------------------------- /bot/gemini/google_gemini_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/gemini/google_gemini_bot.py -------------------------------------------------------------------------------- /bot/linkai/link_ai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/linkai/link_ai_bot.py -------------------------------------------------------------------------------- /bot/minimax/minimax_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/minimax/minimax_bot.py -------------------------------------------------------------------------------- /bot/minimax/minimax_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/minimax/minimax_session.py -------------------------------------------------------------------------------- /bot/modelscope/modelscope_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/modelscope/modelscope_bot.py -------------------------------------------------------------------------------- /bot/modelscope/modelscope_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/modelscope/modelscope_session.py -------------------------------------------------------------------------------- /bot/moonshot/moonshot_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/moonshot/moonshot_bot.py -------------------------------------------------------------------------------- /bot/moonshot/moonshot_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/moonshot/moonshot_session.py -------------------------------------------------------------------------------- /bot/openai/open_ai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/openai/open_ai_bot.py -------------------------------------------------------------------------------- /bot/openai/open_ai_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/openai/open_ai_image.py -------------------------------------------------------------------------------- /bot/openai/open_ai_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/openai/open_ai_session.py -------------------------------------------------------------------------------- /bot/openai/open_ai_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/openai/open_ai_vision.py -------------------------------------------------------------------------------- /bot/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/session_manager.py -------------------------------------------------------------------------------- /bot/xunfei/xunfei_spark_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/xunfei/xunfei_spark_bot.py -------------------------------------------------------------------------------- /bot/zhipuai/zhipu_ai_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/zhipuai/zhipu_ai_image.py -------------------------------------------------------------------------------- /bot/zhipuai/zhipu_ai_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/zhipuai/zhipu_ai_session.py -------------------------------------------------------------------------------- /bot/zhipuai/zhipuai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bot/zhipuai/zhipuai_bot.py -------------------------------------------------------------------------------- /bridge/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bridge/bridge.py -------------------------------------------------------------------------------- /bridge/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bridge/context.py -------------------------------------------------------------------------------- /bridge/reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/bridge/reply.py -------------------------------------------------------------------------------- /channel/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/channel.py -------------------------------------------------------------------------------- /channel/channel_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/channel_factory.py -------------------------------------------------------------------------------- /channel/chat_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/chat_channel.py -------------------------------------------------------------------------------- /channel/chat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/chat_message.py -------------------------------------------------------------------------------- /channel/dingtalk/dingtalk_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/dingtalk/dingtalk_channel.py -------------------------------------------------------------------------------- /channel/dingtalk/dingtalk_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/dingtalk/dingtalk_message.py -------------------------------------------------------------------------------- /channel/feishu/feishu_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/feishu/feishu_channel.py -------------------------------------------------------------------------------- /channel/feishu/feishu_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/feishu/feishu_message.py -------------------------------------------------------------------------------- /channel/terminal/terminal_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/terminal/terminal_channel.py -------------------------------------------------------------------------------- /channel/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/web/README.md -------------------------------------------------------------------------------- /channel/web/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/web/chat.html -------------------------------------------------------------------------------- /channel/web/web_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/web/web_channel.py -------------------------------------------------------------------------------- /channel/wechat/wcf_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wcf_channel.py -------------------------------------------------------------------------------- /channel/wechat/wcf_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wcf_message.py -------------------------------------------------------------------------------- /channel/wechat/wechat_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wechat_channel.py -------------------------------------------------------------------------------- /channel/wechat/wechat_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wechat_message.py -------------------------------------------------------------------------------- /channel/wechat/wechaty_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wechaty_channel.py -------------------------------------------------------------------------------- /channel/wechat/wechaty_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechat/wechaty_message.py -------------------------------------------------------------------------------- /channel/wechatcom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcom/README.md -------------------------------------------------------------------------------- /channel/wechatcom/wechatcomapp_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcom/wechatcomapp_channel.py -------------------------------------------------------------------------------- /channel/wechatcom/wechatcomapp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcom/wechatcomapp_client.py -------------------------------------------------------------------------------- /channel/wechatcom/wechatcomapp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcom/wechatcomapp_message.py -------------------------------------------------------------------------------- /channel/wechatcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcs/README.md -------------------------------------------------------------------------------- /channel/wechatcs/wechatcomservice_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcs/wechatcomservice_channel.py -------------------------------------------------------------------------------- /channel/wechatcs/wechatcomservice_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcs/wechatcomservice_client.py -------------------------------------------------------------------------------- /channel/wechatcs/wechatcomservice_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatcs/wechatcomservice_message.py -------------------------------------------------------------------------------- /channel/wechatmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/README.md -------------------------------------------------------------------------------- /channel/wechatmp/active_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/active_reply.py -------------------------------------------------------------------------------- /channel/wechatmp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/common.py -------------------------------------------------------------------------------- /channel/wechatmp/passive_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/passive_reply.py -------------------------------------------------------------------------------- /channel/wechatmp/wechatmp_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/wechatmp_channel.py -------------------------------------------------------------------------------- /channel/wechatmp/wechatmp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/wechatmp_client.py -------------------------------------------------------------------------------- /channel/wechatmp/wechatmp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wechatmp/wechatmp_message.py -------------------------------------------------------------------------------- /channel/wework/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wework/run.py -------------------------------------------------------------------------------- /channel/wework/wework_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wework/wework_channel.py -------------------------------------------------------------------------------- /channel/wework/wework_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wework/wework_message.py -------------------------------------------------------------------------------- /channel/wxpad/wxpad_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wxpad/wxpad_channel.py -------------------------------------------------------------------------------- /channel/wxpad/wxpad_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/channel/wxpad/wxpad_message.py -------------------------------------------------------------------------------- /common/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/const.py -------------------------------------------------------------------------------- /common/dequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/dequeue.py -------------------------------------------------------------------------------- /common/expired_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/expired_dict.py -------------------------------------------------------------------------------- /common/linkai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/linkai_client.py -------------------------------------------------------------------------------- /common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/log.py -------------------------------------------------------------------------------- /common/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/memory.py -------------------------------------------------------------------------------- /common/package_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/package_manager.py -------------------------------------------------------------------------------- /common/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/singleton.py -------------------------------------------------------------------------------- /common/sorted_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/sorted_dict.py -------------------------------------------------------------------------------- /common/time_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/time_check.py -------------------------------------------------------------------------------- /common/tmp_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/tmp_cleaner.py -------------------------------------------------------------------------------- /common/tmp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/tmp_dir.py -------------------------------------------------------------------------------- /common/token_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/token_bucket.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/common/utils.py -------------------------------------------------------------------------------- /config-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/config-template.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/config.py -------------------------------------------------------------------------------- /database/group_members_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/database/group_members_db.py -------------------------------------------------------------------------------- /docker/Dockerfile.latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docker/Dockerfile.latest -------------------------------------------------------------------------------- /docker/build.latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docker/build.latest.sh -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/audios/chengdu-disney.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/audios/chengdu-disney.mp3 -------------------------------------------------------------------------------- /docs/audios/gewechat_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/audios/gewechat_voice.mp3 -------------------------------------------------------------------------------- /docs/images/NLP工程化.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/NLP工程化.png -------------------------------------------------------------------------------- /docs/images/auto-coder-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/auto-coder-1.jpg -------------------------------------------------------------------------------- /docs/images/auto-coder-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/auto-coder-2.jpg -------------------------------------------------------------------------------- /docs/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/image1.jpg -------------------------------------------------------------------------------- /docs/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/image2.jpg -------------------------------------------------------------------------------- /docs/images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/image4.jpg -------------------------------------------------------------------------------- /docs/images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/image5.jpg -------------------------------------------------------------------------------- /docs/images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/image6.jpg -------------------------------------------------------------------------------- /docs/images/plugin-suno-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/plugin-suno-1.jpg -------------------------------------------------------------------------------- /docs/images/plugin-suno-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/plugin-suno-2.jpg -------------------------------------------------------------------------------- /docs/images/supportme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/supportme.jpg -------------------------------------------------------------------------------- /docs/images/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/wechat.jpg -------------------------------------------------------------------------------- /docs/images/wechat_group_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/wechat_group_1.jpg -------------------------------------------------------------------------------- /docs/images/wechat_group_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/wechat_group_2.jpg -------------------------------------------------------------------------------- /docs/images/wework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/images/wework.jpg -------------------------------------------------------------------------------- /docs/tmp_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/tmp_cleanup.md -------------------------------------------------------------------------------- /docs/user-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/user-info/README.md -------------------------------------------------------------------------------- /docs/user-info/import-user-info-dsl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/user-info/import-user-info-dsl.jpg -------------------------------------------------------------------------------- /docs/user-info/user-info-fields.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/user-info/user-info-fields.jpg -------------------------------------------------------------------------------- /docs/user-info/user-info-room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/user-info/user-info-room.jpg -------------------------------------------------------------------------------- /docs/user-info/user-info-single.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/user-info/user-info-single.jpg -------------------------------------------------------------------------------- /docs/version/old-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/version/old-version.md -------------------------------------------------------------------------------- /docs/webui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/docs/webui/README.md -------------------------------------------------------------------------------- /dsl/chat-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/dsl/chat-workflow.yml -------------------------------------------------------------------------------- /dsl/用户信息.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/dsl/用户信息.yml -------------------------------------------------------------------------------- /lib/dify/dify_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/dify/dify_client.py -------------------------------------------------------------------------------- /lib/itchat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/LICENSE -------------------------------------------------------------------------------- /lib/itchat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/__init__.py -------------------------------------------------------------------------------- /lib/itchat/async_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/__init__.py -------------------------------------------------------------------------------- /lib/itchat/async_components/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/contact.py -------------------------------------------------------------------------------- /lib/itchat/async_components/hotreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/hotreload.py -------------------------------------------------------------------------------- /lib/itchat/async_components/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/login.py -------------------------------------------------------------------------------- /lib/itchat/async_components/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/messages.py -------------------------------------------------------------------------------- /lib/itchat/async_components/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/async_components/register.py -------------------------------------------------------------------------------- /lib/itchat/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/__init__.py -------------------------------------------------------------------------------- /lib/itchat/components/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/contact.py -------------------------------------------------------------------------------- /lib/itchat/components/hotreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/hotreload.py -------------------------------------------------------------------------------- /lib/itchat/components/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/login.py -------------------------------------------------------------------------------- /lib/itchat/components/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/messages.py -------------------------------------------------------------------------------- /lib/itchat/components/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/components/register.py -------------------------------------------------------------------------------- /lib/itchat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/config.py -------------------------------------------------------------------------------- /lib/itchat/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/content.py -------------------------------------------------------------------------------- /lib/itchat/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/core.py -------------------------------------------------------------------------------- /lib/itchat/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/log.py -------------------------------------------------------------------------------- /lib/itchat/returnvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/returnvalues.py -------------------------------------------------------------------------------- /lib/itchat/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/storage/__init__.py -------------------------------------------------------------------------------- /lib/itchat/storage/messagequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/storage/messagequeue.py -------------------------------------------------------------------------------- /lib/itchat/storage/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/storage/templates.py -------------------------------------------------------------------------------- /lib/itchat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/itchat/utils.py -------------------------------------------------------------------------------- /lib/wxpad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wxpad/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/lib/wxpad/client.py -------------------------------------------------------------------------------- /nixpacks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/nixpacks.toml -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/banwords/.gitignore: -------------------------------------------------------------------------------- 1 | banwords.txt -------------------------------------------------------------------------------- /plugins/banwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/banwords/README.md -------------------------------------------------------------------------------- /plugins/banwords/__init__.py: -------------------------------------------------------------------------------- 1 | from .banwords import * 2 | -------------------------------------------------------------------------------- /plugins/banwords/banwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/banwords/banwords.py -------------------------------------------------------------------------------- /plugins/banwords/banwords.txt.template: -------------------------------------------------------------------------------- 1 | nipples 2 | pennis 3 | 法轮功 -------------------------------------------------------------------------------- /plugins/banwords/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/banwords/config.json.template -------------------------------------------------------------------------------- /plugins/banwords/lib/WordsSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/banwords/lib/WordsSearch.py -------------------------------------------------------------------------------- /plugins/bdunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/bdunit/README.md -------------------------------------------------------------------------------- /plugins/bdunit/__init__.py: -------------------------------------------------------------------------------- 1 | from .bdunit import * 2 | -------------------------------------------------------------------------------- /plugins/bdunit/bdunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/bdunit/bdunit.py -------------------------------------------------------------------------------- /plugins/bdunit/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/bdunit/config.json.template -------------------------------------------------------------------------------- /plugins/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/config.json.template -------------------------------------------------------------------------------- /plugins/custom_dify_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/custom_dify_app/README.md -------------------------------------------------------------------------------- /plugins/custom_dify_app/__init__.py: -------------------------------------------------------------------------------- 1 | from .custom_dify_app import * 2 | -------------------------------------------------------------------------------- /plugins/custom_dify_app/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/custom_dify_app/config.json.template -------------------------------------------------------------------------------- /plugins/custom_dify_app/custom_dify_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/custom_dify_app/custom_dify_app.py -------------------------------------------------------------------------------- /plugins/dungeon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/dungeon/README.md -------------------------------------------------------------------------------- /plugins/dungeon/__init__.py: -------------------------------------------------------------------------------- 1 | from .dungeon import * 2 | -------------------------------------------------------------------------------- /plugins/dungeon/dungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/dungeon/dungeon.py -------------------------------------------------------------------------------- /plugins/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/event.py -------------------------------------------------------------------------------- /plugins/finish/__init__.py: -------------------------------------------------------------------------------- 1 | from .finish import * 2 | -------------------------------------------------------------------------------- /plugins/finish/finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/finish/finish.py -------------------------------------------------------------------------------- /plugins/godcmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/godcmd/README.md -------------------------------------------------------------------------------- /plugins/godcmd/__init__.py: -------------------------------------------------------------------------------- 1 | from .godcmd import * 2 | -------------------------------------------------------------------------------- /plugins/godcmd/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/godcmd/config.json.template -------------------------------------------------------------------------------- /plugins/godcmd/godcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/godcmd/godcmd.py -------------------------------------------------------------------------------- /plugins/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/hello/README.md -------------------------------------------------------------------------------- /plugins/hello/__init__.py: -------------------------------------------------------------------------------- 1 | from .hello import * 2 | -------------------------------------------------------------------------------- /plugins/hello/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/hello/config.json.template -------------------------------------------------------------------------------- /plugins/hello/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/hello/hello.py -------------------------------------------------------------------------------- /plugins/jina_sum/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | config.json 3 | -------------------------------------------------------------------------------- /plugins/jina_sum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/LICENSE -------------------------------------------------------------------------------- /plugins/jina_sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/README.md -------------------------------------------------------------------------------- /plugins/jina_sum/__init__.py: -------------------------------------------------------------------------------- 1 | from .jina_sum import * 2 | -------------------------------------------------------------------------------- /plugins/jina_sum/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/config.json.template -------------------------------------------------------------------------------- /plugins/jina_sum/docs/images/csdn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/docs/images/csdn.jpg -------------------------------------------------------------------------------- /plugins/jina_sum/docs/images/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/docs/images/red.jpg -------------------------------------------------------------------------------- /plugins/jina_sum/docs/images/sum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/docs/images/sum.jpg -------------------------------------------------------------------------------- /plugins/jina_sum/docs/images/wechat_mp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/docs/images/wechat_mp.jpg -------------------------------------------------------------------------------- /plugins/jina_sum/jina_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/jina_sum.py -------------------------------------------------------------------------------- /plugins/jina_sum/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/jina_sum/requirements.txt -------------------------------------------------------------------------------- /plugins/keyword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/keyword/README.md -------------------------------------------------------------------------------- /plugins/keyword/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyword import * 2 | -------------------------------------------------------------------------------- /plugins/keyword/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/keyword/config.json.template -------------------------------------------------------------------------------- /plugins/keyword/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/keyword/keyword.py -------------------------------------------------------------------------------- /plugins/keyword/test-keyword-more_replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/keyword/test-keyword-more_replies.png -------------------------------------------------------------------------------- /plugins/keyword/test-keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/keyword/test-keyword.png -------------------------------------------------------------------------------- /plugins/linkai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/README.md -------------------------------------------------------------------------------- /plugins/linkai/__init__.py: -------------------------------------------------------------------------------- 1 | from .linkai import * 2 | -------------------------------------------------------------------------------- /plugins/linkai/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/config.json.template -------------------------------------------------------------------------------- /plugins/linkai/linkai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/linkai.py -------------------------------------------------------------------------------- /plugins/linkai/midjourney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/midjourney.py -------------------------------------------------------------------------------- /plugins/linkai/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/summary.py -------------------------------------------------------------------------------- /plugins/linkai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/linkai/utils.py -------------------------------------------------------------------------------- /plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/plugin.py -------------------------------------------------------------------------------- /plugins/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/plugin_manager.py -------------------------------------------------------------------------------- /plugins/role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/role/README.md -------------------------------------------------------------------------------- /plugins/role/__init__.py: -------------------------------------------------------------------------------- 1 | from .role import * 2 | -------------------------------------------------------------------------------- /plugins/role/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/role/role.py -------------------------------------------------------------------------------- /plugins/role/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/role/roles.json -------------------------------------------------------------------------------- /plugins/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/source.json -------------------------------------------------------------------------------- /plugins/tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/tool/README.md -------------------------------------------------------------------------------- /plugins/tool/__init__.py: -------------------------------------------------------------------------------- 1 | from .tool import * 2 | -------------------------------------------------------------------------------- /plugins/tool/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/tool/config.json.template -------------------------------------------------------------------------------- /plugins/tool/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/plugins/tool/tool.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/requirements-optional.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/scripts/shutdown.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/tout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/scripts/tout.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/stop.sh -------------------------------------------------------------------------------- /tail_log.sh: -------------------------------------------------------------------------------- 1 | tail -f wechat_robot.log -n 20 2 | 3 | -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /translate/baidu/baidu_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/translate/baidu/baidu_translate.py -------------------------------------------------------------------------------- /translate/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/translate/factory.py -------------------------------------------------------------------------------- /translate/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/translate/translator.py -------------------------------------------------------------------------------- /voice/ali/ali_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/ali/ali_api.py -------------------------------------------------------------------------------- /voice/ali/ali_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/ali/ali_voice.py -------------------------------------------------------------------------------- /voice/ali/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/ali/config.json.template -------------------------------------------------------------------------------- /voice/audio_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/audio_convert.py -------------------------------------------------------------------------------- /voice/azure/azure_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/azure/azure_voice.py -------------------------------------------------------------------------------- /voice/azure/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/azure/config.json.template -------------------------------------------------------------------------------- /voice/baidu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/baidu/README.md -------------------------------------------------------------------------------- /voice/baidu/baidu_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/baidu/baidu_voice.py -------------------------------------------------------------------------------- /voice/baidu/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/baidu/config.json.template -------------------------------------------------------------------------------- /voice/dify/dify_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/dify/dify_voice.py -------------------------------------------------------------------------------- /voice/edge/edge_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/edge/edge_voice.py -------------------------------------------------------------------------------- /voice/elevent/elevent_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/elevent/elevent_voice.py -------------------------------------------------------------------------------- /voice/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/factory.py -------------------------------------------------------------------------------- /voice/google/google_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/google/google_voice.py -------------------------------------------------------------------------------- /voice/linkai/linkai_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/linkai/linkai_voice.py -------------------------------------------------------------------------------- /voice/openai/openai_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/openai/openai_voice.py -------------------------------------------------------------------------------- /voice/pytts/pytts_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/pytts/pytts_voice.py -------------------------------------------------------------------------------- /voice/tencent/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/tencent/config.json.template -------------------------------------------------------------------------------- /voice/tencent/tencent_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/tencent/tencent_voice.py -------------------------------------------------------------------------------- /voice/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/voice.py -------------------------------------------------------------------------------- /voice/xunfei/config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/xunfei/config.json.template -------------------------------------------------------------------------------- /voice/xunfei/xunfei_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/xunfei/xunfei_asr.py -------------------------------------------------------------------------------- /voice/xunfei/xunfei_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/xunfei/xunfei_tts.py -------------------------------------------------------------------------------- /voice/xunfei/xunfei_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/voice/xunfei/xunfei_voice.py -------------------------------------------------------------------------------- /web_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5201213/wechatpadpro-on-wechat/HEAD/web_ui.py --------------------------------------------------------------------------------