Update official_configs.py

pull/1477/head
A0000Xz 2026-01-03 16:30:08 +08:00 committed by GitHub
parent 633d84eccb
commit 851dc90260
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -646,6 +646,17 @@ class ResponseSplitterConfig(ConfigBase):
"""是否在超出句子数量限制时合并后一次性返回"""
@dataclass
class ResponseTypingConfig(ConfigBase):
"""回复打字效果配置类"""
typing_delay_per_chinese_char: float = 0.3
"""每个中文字符的打字延迟(秒)"""
typing_delay_per_english_char: float = 0.15
"""每个英文字符的打字延迟(秒)"""
@dataclass
class TelemetryConfig(ConfigBase):
"""遥测配置类"""