监控指定群友发言并调用大模型进行劝阻的 NoneBot2 插件(开关状态 JSON 持久化)
Project description
一个基于 NoneBot2 + OneBot v11 的群聊监控插件:当指定 QQ 在群里发言时,自动调用 OneAPI / OpenAI 兼容接口生成回复进行“劝阻”。
插件开关状态会写入本地 JSON 状态文件,重启后依然生效;其余配置从 .env 读取。
📖 介绍
nonebot-plugin-monitor-study 用于在群聊中监控指定 QQ 号的发言:
- 仅当消息发送者在
MONITOR_QQ_NUMBERS配置名单里时触发 - 自动调用大模型接口生成回复
- 支持指令 开启/关闭(仅影响插件开关),开关状态会持久化到 JSON 文件
当前实现:每次触发只回复 1 次(你的代码中已改为单次回复)。
💿 安装
使用 nb-cli 安装
在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装(包名以你实际发布为准)
nb plugin install nonebot_plugin_monitor_study
使用包管理器安装
pip
pip install nonebot-plugin-monitor-study
然后在 nonebot2 项目根目录下的 pyproject.toml 文件, 在 [tool.nonebot] 部分追加:
plugins = ["nonebot_plugin_monitor_study"]
📦 依赖
nonebot2nonebot-adapter-onebothttpxnonebot-plugin-localstore(用于保存 JSON 状态文件)
安装 localstore:
pip install nonebot-plugin-localstore
⚙️ 配置
在 nonebot2 项目的 .env 文件中添加配置(变量名可按你项目实际映射调整)。
| 配置项 | 必填 | 默认值 | 说明 |
|---|---|---|---|
MONITOR_STATUS |
否 | true |
默认监控开关(仅首次运行/无状态文件时使用) |
MONITOR_QQ_NUMBERS |
是 | [] |
需要监控的 QQ 列表(示例:[123,456]) |
PROMPT |
否 | "" |
system prompt |
ONE_API_URL |
是 | "" |
OneAPI/OpenAI 兼容接口地址(示例:https://xxx/v1) |
ONE_API_TOKEN |
是 | "" |
接口 Token |
ONE_API_MODEL |
是 | "" |
模型名(如 gpt-4o-mini / qwen2.5 等,以你的 OneAPI 配置为准) |
关于状态持久化(JSON)
插件只会把 开关状态 写入本地文件:
- 文件名:
monitor_study_state.json - 位置:由
nonebot_plugin_localstore管理(通常在 bot 的数据目录下)
JSON 内容示例:
{
"monitor_status": true
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nonebot_plugin_monitor_study-0.2.1.tar.gz.
File metadata
- Download URL: nonebot_plugin_monitor_study-0.2.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
287d47dd06c858325742417ed4b5528a06fc5edab18b0a7c906aacfa3f2910db
|
|
| MD5 |
4f8a37292acf21a75cd829510dced9f2
|
|
| BLAKE2b-256 |
7554b2d0e16f3258b8eae03e33ef2aec2688c1552a8f67e665433e7576e6157a
|
File details
Details for the file nonebot_plugin_monitor_study-0.2.1-py3-none-any.whl.
File metadata
- Download URL: nonebot_plugin_monitor_study-0.2.1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d48c1a89fa6db1f8c1b2824b6c7bcea192ddc9cc5e534ae0fad0ce53d78d38f9
|
|
| MD5 |
053a2b16e8d943fcef7364fe84db216e
|
|
| BLAKE2b-256 |
a2f652e657497b555f3d54b0d891e88502683e1d1b3cd77c59071d1824ad1e25
|