chore: bump to v3.4.7

This commit is contained in:
Soulter
2025-01-16 11:26:05 +08:00
parent 164aa2ccd2
commit e6c5c3a493
3 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
如需修改配置,请在 `data/cmd_config.json` 中修改或者在管理面板中可视化修改。
"""
VERSION = "3.4.6"
VERSION = "3.4.7"
DB_PATH = "data/data_v3.db"
# 默认配置
+6
View File
@@ -0,0 +1,6 @@
# What's Changed
- 更好的人格情景管理
- 移除了不常用的人格提示词集
- 优化webchat长连接的处理逻辑
- 修复 tool 为空时部分模型请求错误的问题 #239
+4
View File
@@ -78,6 +78,10 @@ class Main(star.Star):
cron_expression(string): Required when user's reminder is a repeated reminder. The cron expression of the reminder.
human_readable_cron(string): Optional. The human readable cron expression of the reminder.
'''
if event.get_platform_name() == 'qq_official':
yield event.plain_result("reminder 暂不支持 QQ 官方机器人。")
return
if event.unified_msg_origin not in self.reminder_data:
self.reminder_data[event.unified_msg_origin] = []