feat:聊天特定的额外prompt支持

This commit is contained in:
SengokuCola
2026-04-01 20:14:31 +08:00
parent 61deee72af
commit 56f7184c4d
4 changed files with 103 additions and 4 deletions

View File

@@ -1075,6 +1075,24 @@ class ExperimentalConfig(ConfigBase):
)
"""_wrap_私聊说话规则行为风格实验性功能"""
group_chat_prompt: str = Field(
default="",
json_schema_extra={
"x-widget": "textarea",
"x-icon": "users",
},
)
"""_wrap_群聊通用注意事项实验性功能"""
private_chat_prompts: str = Field(
default="",
json_schema_extra={
"x-widget": "textarea",
"x-icon": "user",
},
)
"""_wrap_私聊通用注意事项实验性功能"""
chat_prompts: list[ExtraPromptItem] = Field(
default_factory=lambda: [],
json_schema_extra={