Skip to content

Commit

Permalink
chore: bump to v3.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulter committed Jan 16, 2025
1 parent bbccfa3 commit 692dba2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion astrbot/core/config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
如需修改配置,请在 `data/cmd_config.json` 中修改或者在管理面板中可视化修改。
"""

VERSION = "3.4.6"
VERSION = "3.4.7"
DB_PATH = "data/data_v3.db"

# 默认配置
Expand Down
6 changes: 6 additions & 0 deletions changelogs/v3.4.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# What's Changed

- 更好的人格情景管理
- 移除了不常用的人格提示词集
- 优化webchat长连接的处理逻辑
- 修复 tool 为空时部分模型请求错误的问题 #239
4 changes: 4 additions & 0 deletions packages/reminder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ async def reminder_tool(self, event: AstrMessageEvent, text: str, datetime_str:
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] = []

Expand Down

0 comments on commit 692dba2

Please sign in to comment.