MaiBot-Napcat-Adapter/template/template_config.toml

27 lines
1.2 KiB
TOML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

[Nickname] # 现在没用
nickname = ""
[Napcat_Server] # Napcat连接的ws服务设置
host = "localhost" # Napcat设定的主机地址
port = 8095 # Napcat设定的端口
heartbeat = 30 # 与Napcat设置的心跳相同按秒计
[MaiBot_Server] # 连接麦麦的ws服务设置
platform_name = "qq" # 标识adapter的名称必填
host = "localhost" # 麦麦在.env文件中设置的主机地址即HOST字段
port = 8000 # 麦麦在.env文件中设置的端口即PORT字段
[Chat] # 黑白名单功能
list_type = "whitelist" # 使用的白名单类型可选为whitelist, blacklist
# 当list_type为whitelist时使用白名单模式以下两个列表的含义是仅允许名单中的人聊天
# 当list_type为blacklist时使用黑名单模式以下两个列表的含义是禁止名单中的人聊天
group_list = [] # 群组名单
private_list = [] # 私聊名单
ban_user_id = [] # 禁止名单(禁止名单中的人无法使用任何功能)
[Voice] # 发送语音设置
use_tts = false # 是否使用tts语音请确保你配置了tts并有对应的adapter
[Debug]
level = "INFO" # 日志等级DEBUG, INFO, WARNING, ERROR