feat:可关闭引用回复

This commit is contained in:
SengokuCola
2026-04-20 23:40:20 +08:00
parent d2f90635fa
commit 6696eb2fd4
3 changed files with 20 additions and 5 deletions

View File

@@ -194,6 +194,15 @@ class ChatConfig(ConfigBase):
inevitable_at_reply: bool = Field(default=True)
"""是否启用at必回复"""
enable_reply_quote: bool = Field(
default=True,
json_schema_extra={
"x-widget": "switch",
"x-icon": "quote",
},
)
"""是否启用回复时附带引用回复"""
max_context_size: int = Field(
default=30,
json_schema_extra={