整理了一下配置文件

This commit is contained in:
minecraft1024a
2025-08-13 21:39:23 +08:00
committed by Windpicker-owo
parent c9124a155a
commit 1b1799e3c1
3 changed files with 10 additions and 16 deletions

View File

@@ -215,12 +215,6 @@ class ChatConfig(ConfigBase):
group_chat_mode: Literal["auto", "normal", "focus"] = "auto"
"""群聊聊天模式设置auto-自动切换normal-强制普通模式focus-强制专注模式"""
planner_custom_prompt_enable: bool = False
"""是否启用决策器自定义提示词"""
planner_custom_prompt_content: str = ""
"""决策器自定义提示词内容仅在planner_custom_prompt_enable为True时生效"""
timestamp_display_mode: Literal["normal", "normal_no_YMD", "relative"] = "normal_no_YMD"
"""
消息时间戳显示模式:
@@ -754,6 +748,12 @@ class CustomPromptConfig(ConfigBase):
image_prompt: str = ""
"""图片提示词"""
planner_custom_prompt_enable: bool = False
"""是否启用决策器自定义提示词"""
planner_custom_prompt_content: str = ""
"""决策器自定义提示词内容仅在planner_custom_prompt_enable为True时生效"""
@dataclass
class ResponsePostProcessConfig(ConfigBase):