├── .env ├── .env.dev ├── .env.prod ├── .github └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── CPU.Dockerfile ├── Dockerfile ├── GPU.Dockerfile ├── LICENSE ├── NapCat.Framework.Windows.Once ├── LL │ ├── .github │ │ ├── FUNDING.yml │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug-report.yaml │ │ │ ├── config.yml │ │ │ ├── new-feature.yaml │ │ │ └── plugin-request.yaml │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── src │ │ ├── components │ │ ├── renderer.js │ │ └── static │ │ │ ├── style.css │ │ │ └── template.html │ │ ├── easter_eggs │ │ └── renderer.js │ │ ├── init.js │ │ ├── liteloader_api │ │ ├── main.js │ │ └── preload.js │ │ ├── loader_core │ │ ├── main.js │ │ ├── plugin_loader.js │ │ ├── preload.js │ │ └── renderer.js │ │ ├── main.js │ │ ├── preload.js │ │ ├── protocol_scheme │ │ └── main.js │ │ ├── renderer.js │ │ └── settings │ │ ├── renderer.js │ │ └── static │ │ ├── config.json │ │ ├── default.png │ │ ├── default.svg │ │ ├── style.css │ │ └── view.html ├── LiteLoader_Launcher.js ├── NapCatWinBootHook.dll ├── NapCatWinBootMain.exe ├── killQQ.bat └── qqnt.json ├── README.md ├── bot.py ├── config.yml ├── data └── travel │ └── images │ └── street_view_126.96620940242666_46.35807710202075.jpg ├── docker-compose.yml ├── docs ├── AIDeployment.md ├── Deployment.md └── DockerDeployment.md ├── mongodb ├── WiredTiger ├── WiredTiger.lock ├── WiredTiger.turtle ├── WiredTiger.wt ├── WiredTigerHS.wt ├── _mdb_catalog.wt ├── collection-0-13059559136238780677.wt ├── collection-2-13059559136238780677.wt ├── collection-4-13059559136238780677.wt ├── diagnostic.data │ ├── metrics.2025-01-30T18-14-07Z-00000 │ ├── metrics.2025-01-30T18-31-22Z-00000 │ ├── metrics.2025-01-31T02-56-29Z-00000 │ ├── metrics.2025-01-31T13-18-39Z-00000 │ ├── metrics.2025-02-01T13-59-53Z-00000 │ ├── metrics.2025-02-02T13-55-19Z-00000 │ └── metrics.interim ├── index-1-13059559136238780677.wt ├── index-3-13059559136238780677.wt ├── index-5-13059559136238780677.wt ├── index-6-13059559136238780677.wt ├── journal │ ├── WiredTigerLog.0000000005 │ ├── WiredTigerLog.0000000006 │ └── WiredTigerPreplog.0000000001 ├── mongod.lock ├── sizeStorer.wt └── storage.bson ├── pyproject.toml ├── requirements.txt ├── resource ├── chat │ └── models │ │ └── path_structure.txt ├── music │ └── 帕拉斯 - 富士山下_5key.aac ├── sing │ └── models │ │ └── path_structure.txt ├── tts │ └── models │ │ └── path_structure.txt └── voices │ └── path_structure.txt ├── rpc_server ├── pymongo_rpc.proto ├── pymongo_rpc_pb2.py ├── pymongo_rpc_pb2_grpc.py └── server.py ├── runniuniu - db.bat ├── runniuniu.bat ├── src ├── common │ ├── config │ │ └── __init__.py │ └── utils │ │ ├── __init__.py │ │ ├── array2cqcode │ │ ├── __init__.py │ │ └── message_segment.py │ │ ├── download_tools.py │ │ ├── media_cache │ │ └── __init__.py │ │ ├── rpc │ │ ├── __init__.py │ │ ├── pymongo_rpc.proto │ │ ├── pymongo_rpc_pb2.py │ │ └── pymongo_rpc_pb2_grpc.py │ │ └── speech │ │ ├── requirements.txt │ │ └── text_to_speech.py └── plugins │ ├── auto_accept │ └── __init__.py │ ├── block │ └── __init__.py │ ├── chat │ ├── Config.py │ ├── __init__.py │ ├── model.py │ ├── pipeline.py │ ├── prompt.py │ ├── requirements.txt │ ├── server.py │ └── text_to_speech.py │ ├── drink │ └── __init__.py │ ├── greeting │ ├── __init__.py │ └── wiki.py │ ├── relationship │ ├── __init__.py │ └── model.py │ ├── repeater │ ├── README.md │ ├── __init__.py │ ├── ai_response.py │ ├── model.py │ └── mood.py │ ├── roulette │ ├── __init__.py │ └── pseudorandom.py │ ├── sing │ ├── __init__.py │ ├── mixer.py │ ├── ncm_loader.py │ ├── requirements.txt │ ├── separater.py │ ├── slicer.py │ └── svc_inference.py │ ├── story │ ├── __init__.py │ ├── config.py │ └── story_generator.py │ ├── take_name │ └── __init__.py │ ├── travel │ ├── __init__.py │ └── travel.py │ └── user_system │ ├── __init__.py │ ├── commands.py │ └── user_manager.py ├── tests ├── plugins │ └── roulette │ │ └── test_pseudorandom.py └── rpc │ └── test.py └── tools ├── backup.sh ├── clear_accounts.py ├── clear_old_image.py ├── config.mongodb ├── mix_data.sh └── nltk_download.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.env -------------------------------------------------------------------------------- /.env.dev: -------------------------------------------------------------------------------- 1 | HOST=127.0.0.1 2 | PORT=8080 3 | LOG_LEVEL=DEBUG 4 | FASTAPI_RELOAD=true 5 | -------------------------------------------------------------------------------- /.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.env.prod -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "autopep8" 3 | } -------------------------------------------------------------------------------- /CPU.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/CPU.Dockerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /GPU.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/GPU.Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/.github/FUNDING.yml -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/new-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/new-feature.yaml -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/plugin-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/.github/ISSUE_TEMPLATE/plugin-request.yaml -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | data 3 | application -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/LICENSE -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/README.md -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/package.json -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/components/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/components/renderer.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/components/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/components/static/style.css -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/components/static/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/components/static/template.html -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/easter_eggs/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/easter_eggs/renderer.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/init.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/liteloader_api/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/liteloader_api/main.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/liteloader_api/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/liteloader_api/preload.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/loader_core/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/loader_core/main.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/loader_core/plugin_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/loader_core/plugin_loader.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/loader_core/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/loader_core/preload.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/loader_core/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/loader_core/renderer.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/main.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/preload.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/protocol_scheme/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/protocol_scheme/main.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/renderer.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/renderer.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/static/config.json -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/static/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/static/default.png -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/static/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/static/default.svg -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/static/style.css -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LL/src/settings/static/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LL/src/settings/static/view.html -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/LiteLoader_Launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/LiteLoader_Launcher.js -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/NapCatWinBootHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/NapCatWinBootHook.dll -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/NapCatWinBootMain.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/NapCatWinBootMain.exe -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/killQQ.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/killQQ.bat -------------------------------------------------------------------------------- /NapCat.Framework.Windows.Once/qqnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/NapCat.Framework.Windows.Once/qqnt.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/config.yml -------------------------------------------------------------------------------- /data/travel/images/street_view_126.96620940242666_46.35807710202075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/data/travel/images/street_view_126.96620940242666_46.35807710202075.jpg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/AIDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/docs/AIDeployment.md -------------------------------------------------------------------------------- /docs/Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/docs/Deployment.md -------------------------------------------------------------------------------- /docs/DockerDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/docs/DockerDeployment.md -------------------------------------------------------------------------------- /mongodb/WiredTiger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/WiredTiger -------------------------------------------------------------------------------- /mongodb/WiredTiger.lock: -------------------------------------------------------------------------------- 1 | WiredTiger lock file 2 | -------------------------------------------------------------------------------- /mongodb/WiredTiger.turtle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/WiredTiger.turtle -------------------------------------------------------------------------------- /mongodb/WiredTiger.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/WiredTiger.wt -------------------------------------------------------------------------------- /mongodb/WiredTigerHS.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/WiredTigerHS.wt -------------------------------------------------------------------------------- /mongodb/_mdb_catalog.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/_mdb_catalog.wt -------------------------------------------------------------------------------- /mongodb/collection-0-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/collection-0-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/collection-2-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/collection-2-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/collection-4-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/collection-4-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-01-30T18-14-07Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-01-30T18-14-07Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-01-30T18-31-22Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-01-30T18-31-22Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-01-31T02-56-29Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-01-31T02-56-29Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-01-31T13-18-39Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-01-31T13-18-39Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-02-01T13-59-53Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-02-01T13-59-53Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.2025-02-02T13-55-19Z-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.2025-02-02T13-55-19Z-00000 -------------------------------------------------------------------------------- /mongodb/diagnostic.data/metrics.interim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/diagnostic.data/metrics.interim -------------------------------------------------------------------------------- /mongodb/index-1-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/index-1-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/index-3-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/index-3-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/index-5-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/index-5-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/index-6-13059559136238780677.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/index-6-13059559136238780677.wt -------------------------------------------------------------------------------- /mongodb/journal/WiredTigerLog.0000000005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/journal/WiredTigerLog.0000000005 -------------------------------------------------------------------------------- /mongodb/journal/WiredTigerLog.0000000006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/journal/WiredTigerLog.0000000006 -------------------------------------------------------------------------------- /mongodb/journal/WiredTigerPreplog.0000000001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/journal/WiredTigerPreplog.0000000001 -------------------------------------------------------------------------------- /mongodb/mongod.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongodb/sizeStorer.wt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/sizeStorer.wt -------------------------------------------------------------------------------- /mongodb/storage.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/mongodb/storage.bson -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/chat/models/path_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/resource/chat/models/path_structure.txt -------------------------------------------------------------------------------- /resource/music/帕拉斯 - 富士山下_5key.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/resource/music/帕拉斯 - 富士山下_5key.aac -------------------------------------------------------------------------------- /resource/sing/models/path_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/resource/sing/models/path_structure.txt -------------------------------------------------------------------------------- /resource/tts/models/path_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/resource/tts/models/path_structure.txt -------------------------------------------------------------------------------- /resource/voices/path_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/resource/voices/path_structure.txt -------------------------------------------------------------------------------- /rpc_server/pymongo_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/rpc_server/pymongo_rpc.proto -------------------------------------------------------------------------------- /rpc_server/pymongo_rpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/rpc_server/pymongo_rpc_pb2.py -------------------------------------------------------------------------------- /rpc_server/pymongo_rpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/rpc_server/pymongo_rpc_pb2_grpc.py -------------------------------------------------------------------------------- /rpc_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/rpc_server/server.py -------------------------------------------------------------------------------- /runniuniu - db.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/runniuniu - db.bat -------------------------------------------------------------------------------- /runniuniu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/runniuniu.bat -------------------------------------------------------------------------------- /src/common/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/config/__init__.py -------------------------------------------------------------------------------- /src/common/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/__init__.py -------------------------------------------------------------------------------- /src/common/utils/array2cqcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/array2cqcode/__init__.py -------------------------------------------------------------------------------- /src/common/utils/array2cqcode/message_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/array2cqcode/message_segment.py -------------------------------------------------------------------------------- /src/common/utils/download_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/download_tools.py -------------------------------------------------------------------------------- /src/common/utils/media_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/media_cache/__init__.py -------------------------------------------------------------------------------- /src/common/utils/rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/rpc/__init__.py -------------------------------------------------------------------------------- /src/common/utils/rpc/pymongo_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/rpc/pymongo_rpc.proto -------------------------------------------------------------------------------- /src/common/utils/rpc/pymongo_rpc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/rpc/pymongo_rpc_pb2.py -------------------------------------------------------------------------------- /src/common/utils/rpc/pymongo_rpc_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/rpc/pymongo_rpc_pb2_grpc.py -------------------------------------------------------------------------------- /src/common/utils/speech/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/speech/requirements.txt -------------------------------------------------------------------------------- /src/common/utils/speech/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/common/utils/speech/text_to_speech.py -------------------------------------------------------------------------------- /src/plugins/auto_accept/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/auto_accept/__init__.py -------------------------------------------------------------------------------- /src/plugins/block/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/block/__init__.py -------------------------------------------------------------------------------- /src/plugins/chat/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/Config.py -------------------------------------------------------------------------------- /src/plugins/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/__init__.py -------------------------------------------------------------------------------- /src/plugins/chat/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/model.py -------------------------------------------------------------------------------- /src/plugins/chat/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/pipeline.py -------------------------------------------------------------------------------- /src/plugins/chat/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/prompt.py -------------------------------------------------------------------------------- /src/plugins/chat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/requirements.txt -------------------------------------------------------------------------------- /src/plugins/chat/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/server.py -------------------------------------------------------------------------------- /src/plugins/chat/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/chat/text_to_speech.py -------------------------------------------------------------------------------- /src/plugins/drink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/drink/__init__.py -------------------------------------------------------------------------------- /src/plugins/greeting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/greeting/__init__.py -------------------------------------------------------------------------------- /src/plugins/greeting/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/greeting/wiki.py -------------------------------------------------------------------------------- /src/plugins/relationship/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/relationship/__init__.py -------------------------------------------------------------------------------- /src/plugins/relationship/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/relationship/model.py -------------------------------------------------------------------------------- /src/plugins/repeater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/repeater/README.md -------------------------------------------------------------------------------- /src/plugins/repeater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/repeater/__init__.py -------------------------------------------------------------------------------- /src/plugins/repeater/ai_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/repeater/ai_response.py -------------------------------------------------------------------------------- /src/plugins/repeater/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/repeater/model.py -------------------------------------------------------------------------------- /src/plugins/repeater/mood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/repeater/mood.py -------------------------------------------------------------------------------- /src/plugins/roulette/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/roulette/__init__.py -------------------------------------------------------------------------------- /src/plugins/roulette/pseudorandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/roulette/pseudorandom.py -------------------------------------------------------------------------------- /src/plugins/sing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/__init__.py -------------------------------------------------------------------------------- /src/plugins/sing/mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/mixer.py -------------------------------------------------------------------------------- /src/plugins/sing/ncm_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/ncm_loader.py -------------------------------------------------------------------------------- /src/plugins/sing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/requirements.txt -------------------------------------------------------------------------------- /src/plugins/sing/separater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/separater.py -------------------------------------------------------------------------------- /src/plugins/sing/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/slicer.py -------------------------------------------------------------------------------- /src/plugins/sing/svc_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/sing/svc_inference.py -------------------------------------------------------------------------------- /src/plugins/story/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/story/__init__.py -------------------------------------------------------------------------------- /src/plugins/story/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/story/config.py -------------------------------------------------------------------------------- /src/plugins/story/story_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/story/story_generator.py -------------------------------------------------------------------------------- /src/plugins/take_name/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/take_name/__init__.py -------------------------------------------------------------------------------- /src/plugins/travel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/travel/__init__.py -------------------------------------------------------------------------------- /src/plugins/travel/travel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/travel/travel.py -------------------------------------------------------------------------------- /src/plugins/user_system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/user_system/__init__.py -------------------------------------------------------------------------------- /src/plugins/user_system/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/user_system/commands.py -------------------------------------------------------------------------------- /src/plugins/user_system/user_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/src/plugins/user_system/user_manager.py -------------------------------------------------------------------------------- /tests/plugins/roulette/test_pseudorandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tests/plugins/roulette/test_pseudorandom.py -------------------------------------------------------------------------------- /tests/rpc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tests/rpc/test.py -------------------------------------------------------------------------------- /tools/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/backup.sh -------------------------------------------------------------------------------- /tools/clear_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/clear_accounts.py -------------------------------------------------------------------------------- /tools/clear_old_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/clear_old_image.py -------------------------------------------------------------------------------- /tools/config.mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/config.mongodb -------------------------------------------------------------------------------- /tools/mix_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/mix_data.sh -------------------------------------------------------------------------------- /tools/nltk_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SengokuCola/Magellan-Pallas-Bot/HEAD/tools/nltk_download.py --------------------------------------------------------------------------------