新增多协议接口支持,API接口扩展,并支持注册到Suggar的配置文件。
python
from nonebot import get_driver
from nonebot.plugin import require
require("nonebot_plugin_suggarchat")
from nonebot_plugin_suggarchat.API import Config, Adapter
get_driver().on_startup
async def startup():
config = Config()
config.reg_config("example")
在主配置文件注册一个为example的配置文件项,此操作会自动重载配置文件。
config.reg_model_config("example_model_config")
在每个模型配置文件都注册一个为example_model_config的配置项,此操作会自动重载配置文件。
适配器接口提供,API完善
<details>
API 文档(nonebot_plugin_suggarchat.API)
概述
该 API 提供了配置管理、适配器注册、菜单管理、管理员操作和聊天消息处理等功能。以下是各个类的详细说明。
---
类说明
`Config`
用于处理配置注册和管理的类。
方法
- **`get_config(value: str | None)`**
获取配置信息。
- 参数:
- `value` (str | None): 配置项的名称。如果为 `None`,返回所有配置。
- 返回:
- 配置值或整个配置字典。
- **`get_models()`**
获取模型配置。
- 返回:
- 模型配置字典。
- **`reg_config(key: str)`**
注册一个新的配置项。
- 参数:
- `key` (str): 配置项的名称。
- 异常:
- 如果配置项已存在,抛出 `Exception`。
- **`reg_model_config(key: str)`**
注册一个新的模型配置项。
- 参数:
- `key` (str): 模型配置项的名称。
- 异常:
- 如果配置项已存在,抛出 `Exception`。
---
`Adapter`
用于处理适配器注册的类。
方法
- **`register_adapter(func: callable, protocol: str)`**
注册一个适配器。
- 参数:
- `func` (callable): 适配器函数。
- `protocol` (str): 协议名称。
- 异常:
- 如果协议适配器已存在,抛出 `ValueError`。
---
`Menu`
用于注册菜单项的类。
方法
- **`reg_menu(cmd_name: str, describe: str)`**
注册一个新的菜单项。
- 参数:
- `cmd_name` (str): 菜单项的命令名称。
- `describe` (str): 菜单项的描述。
- 返回:
- `Menu` 实例,支持链式调用。
---
`Admin`
管理员管理类,用于处理与管理员相关的操作。
方法
- **`send_with(msg: str)`**
异步发送消息给管理员。
- 参数:
- `msg` (str): 要发送的消息内容。
- 返回:
- `Admin` 实例,支持链式调用。
- **`send_error(msg: str)`**
异步发送错误消息给管理员,并记录错误日志。
- 参数:
- `msg` (str): 要发送的错误消息内容。
- 返回:
- `Admin` 实例,支持链式调用。
- **`is_admin(user_id: int)`**
检查用户是否是管理员。
- 参数:
- `user_id` (int): 用户 ID。
- 返回:
- `bool`: 用户是否是管理员。
- **`add_admin(user_id: int)`**
添加新的管理员用户 ID。
- 参数:
- `user_id` (int): 要添加的用户 ID。
- 返回:
- `Admin` 实例,支持链式调用。
- **`set_admin_group(group_id: int)`**
设置管理员组 ID。
- 参数:
- `group_id` (int): 管理员组 ID。
- 返回:
- `Admin` 实例,支持链式调用。
---
`Chat`
用于处理与 LLM(大语言模型)相关的操作。
方法
- **`get_msg(prompt: str, message: list)`**
获取聊天消息。
- 参数:
- `prompt` (str): 提示语。
- `message` (list): 消息列表。
- 返回:
- 聊天消息。
- **`get_msg_on_list(message: list)`**
根据消息列表获取聊天消息。
- 参数:
- `message` (list): 消息列表。
- 返回:
- 聊天消息。
---
示例代码
配置管理
python
config = Config()
config_value = config.get_config("some_key")
注册适配器
python
adapter = Adapter()
adapter.register_adapter(my_func, "my_protocol")
注册菜单项
python
menu = Menu()
menu.reg_menu("help", "显示帮助信息")
发送消息给管理群组
python
admin = Admin()
await admin.send_with("Hello, Admin!")
说明
- 该文档基于代码中的类和方法编写,涵盖了主要功能和用法。
- 代码中标记为“施工中”的部分未包含在文档中,待功能完善后可补充。
适配器规范
适配器规范定义了适配器应该实现的功能,包括消息处理、事件处理、群组管理、用户管理等。
上文已经提及了API接口如何注册适配器,下面将进行详细介绍。
exapmle:
python
from nonebot import get_driver
from nonebot.plugin import require
require("nonebot_plugin_suggarchat")
from nonebot_plugin_suggarchat.API import Adapter
必须实现的形式参数说明:
base_url: api地址(来自配置文件)
model: 模型名称
key: api key(来自配置文件)
messages: 消息列表
max_tokens: 最大token数(来自配置文件)
config 配置文件
async def example_adapter(base_url:str, model:str, key:str, messages:list, max_tokens:int, config:dict)->str:
你的逻辑,必须返回一个字符串
todo
return string
get_driver().on_startup
async def startup():
adapter = Adapter()
adapter.register_adapter(example_adapter, "example")
上架Nonebot商店:
推荐的命名格式:nonebot_plugin_suggaradapter_yourpluginname
</details>
伪人模式回复概率改为浮点。
What's Changed
* 浮点概率,给我merge,给我merge,啊啊啊啊啊啊啊啊啊啊啊啊啊 by xingdeshoumin in https://github.com/JohnRichard4096/nonebot_plugin_suggarchat/pull/55
**Full Changelog**: https://github.com/JohnRichard4096/nonebot_plugin_suggarchat/compare/1.14.2.1...1.15