├── .dockerignore ├── .github └── workflows │ └── docker-build-on-commit.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── WebUI ├── __init__.py ├── common │ └── bot_bridge.py ├── config.py ├── forms │ ├── __init__.py │ └── auth_forms.py ├── routes │ ├── __init__.py │ ├── about.py │ ├── auth.py │ ├── bot.py │ ├── config.py │ ├── explorer.py │ ├── file.py │ ├── logs.py │ ├── overview.py │ ├── plugin.py │ └── tools.py ├── services │ ├── bot_service.py │ ├── config_service.py │ ├── data_service.py │ ├── file_service.py │ ├── plugin_service.py │ ├── tool_service.py │ └── websocket_service.py ├── static │ ├── css │ │ ├── components │ │ │ ├── cards.css │ │ │ ├── file_browser.css │ │ │ ├── file_viewer.css │ │ │ ├── loading.css │ │ │ └── modals.css │ │ ├── custom.css │ │ ├── pages │ │ │ ├── about.css │ │ │ ├── auth.css │ │ │ ├── config.css │ │ │ ├── explorer.css │ │ │ ├── logs.css │ │ │ ├── overview.css │ │ │ ├── plugin.css │ │ │ └── tools.css │ │ └── style.css │ └── js │ │ ├── components │ │ ├── cards.js │ │ ├── file_browser.js │ │ ├── file_viewer.js │ │ ├── loading.js │ │ ├── modals.js │ │ └── notification.js │ │ ├── logs.js │ │ ├── main.js │ │ └── pages │ │ ├── about.js │ │ ├── auth.js │ │ ├── config.js │ │ ├── explorer.js │ │ ├── overview.js │ │ ├── plugin.js │ │ └── tools.js ├── templates │ ├── about │ │ └── index.html │ ├── auth │ │ └── login.html │ ├── base.html │ ├── components │ │ ├── cards.html │ │ ├── file_browser.html │ │ ├── file_viewer.html │ │ ├── loading.html │ │ └── modals.html │ ├── config │ │ └── index.html │ ├── explorer │ │ ├── index.html │ │ └── view.html │ ├── logs │ │ └── index.html │ ├── overview │ │ └── index.html │ ├── plugin │ │ └── index.html │ └── tools │ │ └── index.html └── utils │ ├── async_to_sync.py │ ├── auth_utils.py │ ├── singleton.py │ └── template_filters.py ├── WechatAPI ├── Client │ ├── __init__.py │ ├── base.py │ ├── chatroom.py │ ├── fallback.png │ ├── friend.py │ ├── hongbao.py │ ├── login.py │ ├── message.py │ ├── protect.py │ ├── tool.py │ └── user.py ├── Server │ ├── WechatAPIServer.py │ └── __init__.py ├── __init__.py ├── core │ └── placeholder └── errors.py ├── WechatAPIDocs ├── Makefile ├── _templates │ └── custom-toc.html ├── build.sh ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── XYBot_Dify_Template.yml ├── app.py ├── bot.py ├── database ├── XYBotDB.py ├── keyvalDB.py └── messsagDB.py ├── docker-compose.yml ├── docs ├── .nojekyll ├── README.md ├── WechatAPIClient │ ├── _modules │ │ ├── WechatAPI │ │ │ └── Client │ │ │ │ ├── base.html │ │ │ │ ├── chatroom.html │ │ │ │ ├── friend.html │ │ │ │ ├── hongbao.html │ │ │ │ ├── login.html │ │ │ │ ├── message.html │ │ │ │ ├── protect.html │ │ │ │ ├── tool.html │ │ │ │ └── user.html │ │ └── index.html │ ├── _sources │ │ └── index.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── debug.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── scripts │ │ │ ├── furo-extensions.js │ │ │ ├── furo.js │ │ │ ├── furo.js.LICENSE.txt │ │ │ └── furo.js.map │ │ ├── searchtools.js │ │ ├── skeleton.css │ │ ├── sphinx_highlight.js │ │ ├── styles │ │ │ ├── furo-extensions.css │ │ │ ├── furo-extensions.css.map │ │ │ ├── furo.css │ │ │ └── furo.css.map │ │ └── translations.js │ ├── genindex.html │ ├── index.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── _coverpage.md ├── _sidebar.md ├── index.html └── zh_cn │ ├── Dify插件配置.md │ ├── Docker部署.md │ ├── Linux部署.md │ ├── Windows部署.md │ ├── assets │ ├── DifyAPI密钥.png │ ├── DifyOpenAIAPI.png │ ├── Dify三个LLM节点.png │ ├── Dify下载模版.png │ ├── Dify个人设置.png │ ├── Dify个人设置模型供应商.png │ ├── Dify保存密钥.png │ ├── Dify创建密钥.png │ ├── Dify创建应用.png │ ├── Dify发布.png │ ├── Dify导入文件.png │ ├── Dify开始使用.png │ ├── Dify模型支持图片输入.png │ ├── Dify点击节点.png │ ├── Dify编排.png │ ├── Dify访问API.png │ ├── Dify选择模型.png │ └── Dify配置模型供应商.png │ ├── 插件开发.md │ └── 配置文件.md ├── main_config.toml ├── plugins ├── AdminPoint │ ├── __init__.py │ ├── config.toml │ └── main.py ├── AdminSigninReset │ ├── __init__.py │ ├── config.toml │ └── main.py ├── AdminWhitelist │ ├── __init__.py │ ├── config.toml │ └── main.py ├── BotStatus │ ├── __init__.py │ ├── config.toml │ └── main.py ├── DependencyManager │ ├── README.md │ ├── __init__.py │ ├── config.toml │ └── main.py ├── Dify │ ├── __init__.py │ ├── config.toml │ └── main.py ├── DouyinParser │ ├── __init__.py │ ├── config.toml │ └── main.py ├── ExamplePlugin │ ├── __init__.py │ ├── config.toml │ └── main.py ├── GetContact │ ├── __init__.py │ ├── config.toml │ └── main.py ├── GetWeather │ ├── __init__.py │ ├── config.toml │ └── main.py ├── Gomoku │ ├── __init__.py │ ├── config.toml │ └── main.py ├── GoodMorning │ ├── __init__.py │ ├── config.toml │ └── main.py ├── GroupWelcome │ ├── __init__.py │ ├── config.toml │ └── main.py ├── Leaderboard │ ├── __init__.py │ ├── config.toml │ └── main.py ├── LuckyDraw │ ├── __init__.py │ ├── config.toml │ └── main.py ├── ManagePlugin │ ├── __init__.py │ ├── config.toml │ └── main.py ├── Menu │ ├── __init__.py │ ├── config.toml │ └── main.py ├── Music │ ├── __init__.py │ ├── config.toml │ └── main.py ├── News │ ├── __init__.py │ ├── config.toml │ └── main.py ├── PointTrade │ ├── __init__.py │ ├── config.toml │ └── main.py ├── QueryPoint │ ├── __init__.py │ ├── config.toml │ └── main.py ├── RandomMember │ ├── __init__.py │ ├── config.toml │ └── main.py ├── RandomPicture │ ├── __init__.py │ ├── config.toml │ └── main.py ├── RedPacket │ ├── __init__.py │ ├── config.toml │ └── main.py ├── SignIn │ ├── __init__.py │ ├── config.toml │ └── main.py ├── TencentLke │ ├── __init__.py │ ├── config.toml │ └── main.py ├── UpdateQR │ ├── __init__.py │ └── main.py └── Warthunder │ ├── __init__.py │ ├── config.toml │ └── main.py ├── redis.conf ├── requirements.txt ├── resource ├── font │ └── 华文细黑.ttf └── images │ ├── gomoku_board_original.png │ └── redpacket.png └── utils ├── decorators.py ├── event_manager.py ├── plugin_base.py ├── plugin_manager.py ├── singleton.py └── xybot.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-build-on-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/.github/workflows/docker-build-on-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/README.md -------------------------------------------------------------------------------- /WebUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/__init__.py -------------------------------------------------------------------------------- /WebUI/common/bot_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/common/bot_bridge.py -------------------------------------------------------------------------------- /WebUI/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/config.py -------------------------------------------------------------------------------- /WebUI/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebUI/forms/auth_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/forms/auth_forms.py -------------------------------------------------------------------------------- /WebUI/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/__init__.py -------------------------------------------------------------------------------- /WebUI/routes/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/about.py -------------------------------------------------------------------------------- /WebUI/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/auth.py -------------------------------------------------------------------------------- /WebUI/routes/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/bot.py -------------------------------------------------------------------------------- /WebUI/routes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/config.py -------------------------------------------------------------------------------- /WebUI/routes/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/explorer.py -------------------------------------------------------------------------------- /WebUI/routes/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/file.py -------------------------------------------------------------------------------- /WebUI/routes/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/logs.py -------------------------------------------------------------------------------- /WebUI/routes/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/overview.py -------------------------------------------------------------------------------- /WebUI/routes/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/plugin.py -------------------------------------------------------------------------------- /WebUI/routes/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/routes/tools.py -------------------------------------------------------------------------------- /WebUI/services/bot_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/bot_service.py -------------------------------------------------------------------------------- /WebUI/services/config_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/config_service.py -------------------------------------------------------------------------------- /WebUI/services/data_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/data_service.py -------------------------------------------------------------------------------- /WebUI/services/file_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/file_service.py -------------------------------------------------------------------------------- /WebUI/services/plugin_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/plugin_service.py -------------------------------------------------------------------------------- /WebUI/services/tool_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/tool_service.py -------------------------------------------------------------------------------- /WebUI/services/websocket_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/services/websocket_service.py -------------------------------------------------------------------------------- /WebUI/static/css/components/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/components/cards.css -------------------------------------------------------------------------------- /WebUI/static/css/components/file_browser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/components/file_browser.css -------------------------------------------------------------------------------- /WebUI/static/css/components/file_viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/components/file_viewer.css -------------------------------------------------------------------------------- /WebUI/static/css/components/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/components/loading.css -------------------------------------------------------------------------------- /WebUI/static/css/components/modals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/components/modals.css -------------------------------------------------------------------------------- /WebUI/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/custom.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/about.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/auth.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/config.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/explorer.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/logs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/logs.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/overview.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/plugin.css -------------------------------------------------------------------------------- /WebUI/static/css/pages/tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/pages/tools.css -------------------------------------------------------------------------------- /WebUI/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/css/style.css -------------------------------------------------------------------------------- /WebUI/static/js/components/cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/cards.js -------------------------------------------------------------------------------- /WebUI/static/js/components/file_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/file_browser.js -------------------------------------------------------------------------------- /WebUI/static/js/components/file_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/file_viewer.js -------------------------------------------------------------------------------- /WebUI/static/js/components/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/loading.js -------------------------------------------------------------------------------- /WebUI/static/js/components/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/modals.js -------------------------------------------------------------------------------- /WebUI/static/js/components/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/components/notification.js -------------------------------------------------------------------------------- /WebUI/static/js/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/logs.js -------------------------------------------------------------------------------- /WebUI/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/main.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/about.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/auth.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/config.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/explorer.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/overview.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/plugin.js -------------------------------------------------------------------------------- /WebUI/static/js/pages/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/static/js/pages/tools.js -------------------------------------------------------------------------------- /WebUI/templates/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/about/index.html -------------------------------------------------------------------------------- /WebUI/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/auth/login.html -------------------------------------------------------------------------------- /WebUI/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/base.html -------------------------------------------------------------------------------- /WebUI/templates/components/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/components/cards.html -------------------------------------------------------------------------------- /WebUI/templates/components/file_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/components/file_browser.html -------------------------------------------------------------------------------- /WebUI/templates/components/file_viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/components/file_viewer.html -------------------------------------------------------------------------------- /WebUI/templates/components/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/components/loading.html -------------------------------------------------------------------------------- /WebUI/templates/components/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/components/modals.html -------------------------------------------------------------------------------- /WebUI/templates/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/config/index.html -------------------------------------------------------------------------------- /WebUI/templates/explorer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/explorer/index.html -------------------------------------------------------------------------------- /WebUI/templates/explorer/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/explorer/view.html -------------------------------------------------------------------------------- /WebUI/templates/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/logs/index.html -------------------------------------------------------------------------------- /WebUI/templates/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/overview/index.html -------------------------------------------------------------------------------- /WebUI/templates/plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/plugin/index.html -------------------------------------------------------------------------------- /WebUI/templates/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/templates/tools/index.html -------------------------------------------------------------------------------- /WebUI/utils/async_to_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/utils/async_to_sync.py -------------------------------------------------------------------------------- /WebUI/utils/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/utils/auth_utils.py -------------------------------------------------------------------------------- /WebUI/utils/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/utils/singleton.py -------------------------------------------------------------------------------- /WebUI/utils/template_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WebUI/utils/template_filters.py -------------------------------------------------------------------------------- /WechatAPI/Client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/__init__.py -------------------------------------------------------------------------------- /WechatAPI/Client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/base.py -------------------------------------------------------------------------------- /WechatAPI/Client/chatroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/chatroom.py -------------------------------------------------------------------------------- /WechatAPI/Client/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/fallback.png -------------------------------------------------------------------------------- /WechatAPI/Client/friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/friend.py -------------------------------------------------------------------------------- /WechatAPI/Client/hongbao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/hongbao.py -------------------------------------------------------------------------------- /WechatAPI/Client/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/login.py -------------------------------------------------------------------------------- /WechatAPI/Client/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/message.py -------------------------------------------------------------------------------- /WechatAPI/Client/protect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/protect.py -------------------------------------------------------------------------------- /WechatAPI/Client/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/tool.py -------------------------------------------------------------------------------- /WechatAPI/Client/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Client/user.py -------------------------------------------------------------------------------- /WechatAPI/Server/WechatAPIServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/Server/WechatAPIServer.py -------------------------------------------------------------------------------- /WechatAPI/Server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WechatAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/__init__.py -------------------------------------------------------------------------------- /WechatAPI/core/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WechatAPI/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPI/errors.py -------------------------------------------------------------------------------- /WechatAPIDocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/Makefile -------------------------------------------------------------------------------- /WechatAPIDocs/_templates/custom-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/_templates/custom-toc.html -------------------------------------------------------------------------------- /WechatAPIDocs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/build.sh -------------------------------------------------------------------------------- /WechatAPIDocs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/conf.py -------------------------------------------------------------------------------- /WechatAPIDocs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/index.rst -------------------------------------------------------------------------------- /WechatAPIDocs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/make.bat -------------------------------------------------------------------------------- /WechatAPIDocs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/WechatAPIDocs/requirements.txt -------------------------------------------------------------------------------- /XYBot_Dify_Template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/XYBot_Dify_Template.yml -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/bot.py -------------------------------------------------------------------------------- /database/XYBotDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/database/XYBotDB.py -------------------------------------------------------------------------------- /database/keyvalDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/database/keyvalDB.py -------------------------------------------------------------------------------- /database/messsagDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/database/messsagDB.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/base.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/chatroom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/chatroom.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/friend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/friend.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/hongbao.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/hongbao.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/login.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/message.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/protect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/protect.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/tool.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/WechatAPI/Client/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/WechatAPI/Client/user.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_modules/index.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/basic.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/debug.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/doctools.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/file.png -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/language_data.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/minus.png -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/plus.png -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/pygments.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/scripts/furo-extensions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/scripts/furo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/scripts/furo.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/scripts/furo.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/scripts/furo.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/scripts/furo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/scripts/furo.js.map -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/searchtools.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/skeleton.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/styles/furo-extensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/styles/furo-extensions.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/styles/furo-extensions.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/styles/furo-extensions.css.map -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/styles/furo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/styles/furo.css -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/styles/furo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/styles/furo.css.map -------------------------------------------------------------------------------- /docs/WechatAPIClient/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/_static/translations.js -------------------------------------------------------------------------------- /docs/WechatAPIClient/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/genindex.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/index.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/objects.inv -------------------------------------------------------------------------------- /docs/WechatAPIClient/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/py-modindex.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/search.html -------------------------------------------------------------------------------- /docs/WechatAPIClient/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/WechatAPIClient/searchindex.js -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/zh_cn/Dify插件配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/Dify插件配置.md -------------------------------------------------------------------------------- /docs/zh_cn/Docker部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/Docker部署.md -------------------------------------------------------------------------------- /docs/zh_cn/Linux部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/Linux部署.md -------------------------------------------------------------------------------- /docs/zh_cn/Windows部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/Windows部署.md -------------------------------------------------------------------------------- /docs/zh_cn/assets/DifyAPI密钥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/DifyAPI密钥.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/DifyOpenAIAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/DifyOpenAIAPI.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify三个LLM节点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify三个LLM节点.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify下载模版.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify下载模版.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify个人设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify个人设置.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify个人设置模型供应商.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify个人设置模型供应商.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify保存密钥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify保存密钥.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify创建密钥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify创建密钥.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify创建应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify创建应用.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify发布.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify发布.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify导入文件.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify导入文件.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify开始使用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify开始使用.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify模型支持图片输入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify模型支持图片输入.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify点击节点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify点击节点.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify编排.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify编排.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify访问API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify访问API.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify选择模型.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify选择模型.png -------------------------------------------------------------------------------- /docs/zh_cn/assets/Dify配置模型供应商.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/assets/Dify配置模型供应商.png -------------------------------------------------------------------------------- /docs/zh_cn/插件开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/插件开发.md -------------------------------------------------------------------------------- /docs/zh_cn/配置文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/docs/zh_cn/配置文件.md -------------------------------------------------------------------------------- /main_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/main_config.toml -------------------------------------------------------------------------------- /plugins/AdminPoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/AdminPoint/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminPoint/config.toml -------------------------------------------------------------------------------- /plugins/AdminPoint/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminPoint/main.py -------------------------------------------------------------------------------- /plugins/AdminSigninReset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/AdminSigninReset/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminSigninReset/config.toml -------------------------------------------------------------------------------- /plugins/AdminSigninReset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminSigninReset/main.py -------------------------------------------------------------------------------- /plugins/AdminWhitelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/AdminWhitelist/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminWhitelist/config.toml -------------------------------------------------------------------------------- /plugins/AdminWhitelist/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/AdminWhitelist/main.py -------------------------------------------------------------------------------- /plugins/BotStatus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/BotStatus/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/BotStatus/config.toml -------------------------------------------------------------------------------- /plugins/BotStatus/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/BotStatus/main.py -------------------------------------------------------------------------------- /plugins/DependencyManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/DependencyManager/README.md -------------------------------------------------------------------------------- /plugins/DependencyManager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/DependencyManager/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/DependencyManager/config.toml -------------------------------------------------------------------------------- /plugins/DependencyManager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/DependencyManager/main.py -------------------------------------------------------------------------------- /plugins/Dify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Dify/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Dify/config.toml -------------------------------------------------------------------------------- /plugins/Dify/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Dify/main.py -------------------------------------------------------------------------------- /plugins/DouyinParser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/DouyinParser/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/DouyinParser/config.toml -------------------------------------------------------------------------------- /plugins/DouyinParser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/DouyinParser/main.py -------------------------------------------------------------------------------- /plugins/ExamplePlugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/ExamplePlugin/config.toml: -------------------------------------------------------------------------------- 1 | [basic] 2 | # 是否启用插件 3 | enable = true -------------------------------------------------------------------------------- /plugins/ExamplePlugin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/ExamplePlugin/main.py -------------------------------------------------------------------------------- /plugins/GetContact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/GetContact/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GetContact/config.toml -------------------------------------------------------------------------------- /plugins/GetContact/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GetContact/main.py -------------------------------------------------------------------------------- /plugins/GetWeather/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/GetWeather/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GetWeather/config.toml -------------------------------------------------------------------------------- /plugins/GetWeather/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GetWeather/main.py -------------------------------------------------------------------------------- /plugins/Gomoku/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Gomoku/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Gomoku/config.toml -------------------------------------------------------------------------------- /plugins/Gomoku/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Gomoku/main.py -------------------------------------------------------------------------------- /plugins/GoodMorning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/GoodMorning/config.toml: -------------------------------------------------------------------------------- 1 | [GoodMorning] 2 | enable = true -------------------------------------------------------------------------------- /plugins/GoodMorning/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GoodMorning/main.py -------------------------------------------------------------------------------- /plugins/GroupWelcome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/GroupWelcome/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GroupWelcome/config.toml -------------------------------------------------------------------------------- /plugins/GroupWelcome/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/GroupWelcome/main.py -------------------------------------------------------------------------------- /plugins/Leaderboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Leaderboard/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Leaderboard/config.toml -------------------------------------------------------------------------------- /plugins/Leaderboard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Leaderboard/main.py -------------------------------------------------------------------------------- /plugins/LuckyDraw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/LuckyDraw/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/LuckyDraw/config.toml -------------------------------------------------------------------------------- /plugins/LuckyDraw/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/LuckyDraw/main.py -------------------------------------------------------------------------------- /plugins/ManagePlugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/ManagePlugin/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/ManagePlugin/config.toml -------------------------------------------------------------------------------- /plugins/ManagePlugin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/ManagePlugin/main.py -------------------------------------------------------------------------------- /plugins/Menu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Menu/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Menu/config.toml -------------------------------------------------------------------------------- /plugins/Menu/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Menu/main.py -------------------------------------------------------------------------------- /plugins/Music/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Music/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Music/config.toml -------------------------------------------------------------------------------- /plugins/Music/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Music/main.py -------------------------------------------------------------------------------- /plugins/News/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/News/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/News/config.toml -------------------------------------------------------------------------------- /plugins/News/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/News/main.py -------------------------------------------------------------------------------- /plugins/PointTrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/PointTrade/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/PointTrade/config.toml -------------------------------------------------------------------------------- /plugins/PointTrade/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/PointTrade/main.py -------------------------------------------------------------------------------- /plugins/QueryPoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/QueryPoint/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/QueryPoint/config.toml -------------------------------------------------------------------------------- /plugins/QueryPoint/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/QueryPoint/main.py -------------------------------------------------------------------------------- /plugins/RandomMember/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/RandomMember/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RandomMember/config.toml -------------------------------------------------------------------------------- /plugins/RandomMember/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RandomMember/main.py -------------------------------------------------------------------------------- /plugins/RandomPicture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/RandomPicture/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RandomPicture/config.toml -------------------------------------------------------------------------------- /plugins/RandomPicture/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RandomPicture/main.py -------------------------------------------------------------------------------- /plugins/RedPacket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/RedPacket/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RedPacket/config.toml -------------------------------------------------------------------------------- /plugins/RedPacket/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/RedPacket/main.py -------------------------------------------------------------------------------- /plugins/SignIn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/SignIn/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/SignIn/config.toml -------------------------------------------------------------------------------- /plugins/SignIn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/SignIn/main.py -------------------------------------------------------------------------------- /plugins/TencentLke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/TencentLke/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/TencentLke/config.toml -------------------------------------------------------------------------------- /plugins/TencentLke/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/TencentLke/main.py -------------------------------------------------------------------------------- /plugins/UpdateQR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/UpdateQR/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/UpdateQR/main.py -------------------------------------------------------------------------------- /plugins/Warthunder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/Warthunder/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Warthunder/config.toml -------------------------------------------------------------------------------- /plugins/Warthunder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/plugins/Warthunder/main.py -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/redis.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/font/华文细黑.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/resource/font/华文细黑.ttf -------------------------------------------------------------------------------- /resource/images/gomoku_board_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/resource/images/gomoku_board_original.png -------------------------------------------------------------------------------- /resource/images/redpacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/resource/images/redpacket.png -------------------------------------------------------------------------------- /utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/decorators.py -------------------------------------------------------------------------------- /utils/event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/event_manager.py -------------------------------------------------------------------------------- /utils/plugin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/plugin_base.py -------------------------------------------------------------------------------- /utils/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/plugin_manager.py -------------------------------------------------------------------------------- /utils/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/singleton.py -------------------------------------------------------------------------------- /utils/xybot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenryXiaoYang/XYBotV2/HEAD/utils/xybot.py --------------------------------------------------------------------------------