mirror of https://github.com/Mai-with-u/MaiBot.git
Merge branch 'dev' of github.com:MaiM-with-u/MaiBot into dev
commit
43edcf6b7e
|
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
0.10.4饼 表达方式优化
|
||||
无了
|
||||
|
||||
## [0.10.3] - 2025-9-1x
|
||||
### 🌟 主要功能更改
|
||||
- planner支持多动作,移除Sub_planner
|
||||
|
|
@ -8,10 +11,10 @@
|
|||
- 更丰富的聊天行为
|
||||
- 支持发送转发和合并转发
|
||||
- 关系现在支持多人的信息
|
||||
- 更好的event系统,正式建立
|
||||
|
||||
### 细节功能更改
|
||||
- 支持所有表达方式互通
|
||||
- 更好的event系统
|
||||
- 现可使用付费嵌入模型
|
||||
- 添加多种发送类型
|
||||
- 优化识图token限制
|
||||
|
|
|
|||
|
|
@ -662,7 +662,7 @@ class PrivateReplyer:
|
|||
time_block=time_block,
|
||||
target=target,
|
||||
reason=reply_reason,
|
||||
sender = sender,
|
||||
sender_name=sender,
|
||||
reply_style=global_config.personality.reply_style,
|
||||
keywords_reaction_prompt=keywords_reaction_prompt,
|
||||
moderation_prompt=moderation_prompt_block,
|
||||
|
|
@ -678,15 +678,14 @@ class PrivateReplyer:
|
|||
extra_info_block=extra_info_block,
|
||||
identity=personality_prompt,
|
||||
action_descriptions=actions_info,
|
||||
sender_name=sender,
|
||||
mood_state=mood_prompt,
|
||||
dialogue_prompt=dialogue_prompt,
|
||||
time_block=time_block,
|
||||
sender = sender,
|
||||
reply_target_block=reply_target_block,
|
||||
reply_style=global_config.personality.reply_style,
|
||||
keywords_reaction_prompt=keywords_reaction_prompt,
|
||||
moderation_prompt=moderation_prompt_block,
|
||||
sender_name=sender,
|
||||
), selected_expressions
|
||||
|
||||
async def build_prompt_rewrite_context(
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ from src.plugin_system.apis import (
|
|||
plugin_manage_api,
|
||||
send_api,
|
||||
tool_api,
|
||||
frequency_api,
|
||||
)
|
||||
from .logging_api import get_logger
|
||||
from .plugin_register_api import register_plugin
|
||||
|
|
@ -38,4 +39,5 @@ __all__ = [
|
|||
"get_logger",
|
||||
"register_plugin",
|
||||
"tool_api",
|
||||
"frequency_api",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
[inner]
|
||||
version = "6.14.1"
|
||||
version = "6.14.2"
|
||||
|
||||
#----以下是给开发人员阅读的,如果你只是部署了麦麦,不需要阅读----
|
||||
#如果你想要修改配置文件,请递增version的值
|
||||
|
|
|
|||
Loading…
Reference in New Issue