能跑但是没写部署教程,主题和记忆识别也没写完
This commit is contained in:
SengokuCola
2025-02-26 18:12:28 +08:00
parent 44f94120ce
commit 972e6066e6
37 changed files with 4625 additions and 0 deletions

22
bot.py Normal file
View File

@@ -0,0 +1,22 @@
import nonebot
from nonebot.adapters.onebot.v11 import Adapter
# 初始化 NoneBot
nonebot.init(
# napcat 默认使用 8080 端口
websocket_port=8080,
# 设置日志级别
log_level="INFO",
# 设置超级用户
superusers={"你的QQ号"}
)
# 注册适配器
driver = nonebot.get_driver()
driver.register_adapter(Adapter)
# 加载插件
nonebot.load_plugins("src/plugins")
if __name__ == "__main__":
nonebot.run()