File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,24 @@ type JoinPropertiesTTSBody struct {
172
172
//
173
173
// - TTSElevenLabsVendorParams
174
174
Params TTSVendorParamsInterface `json:"params"`
175
+
176
+ // Controls whether the TTS module skips bracketed content when reading LLM response text.
177
+ //
178
+ // This prevents the agent from vocalizing structural prompt information like tone indicators,
179
+ // action descriptions, and system prompts, creating a more natural and immersive listening experience.
180
+ //
181
+ // Enable this feature by specifying one or more values:
182
+ //
183
+ // 1: Skip content in Chinese parentheses ( ),unicode is \uFF08 \uFF09
184
+ //
185
+ // 2: Skip content in Chinese square brackets 【】,unicode is \u3010 \u3011
186
+ //
187
+ // 3: Skip content in parentheses (),unicode is \u0028 \u0029
188
+ //
189
+ // 4: Skip content in square brackets [ ],unicode is \u005B \u005D
190
+ //
191
+ // 5: Skip content in curly braces { },unicode is \u007B \u007D
192
+ SkipPatterns []int `json:"skipPatterns,omitempty"`
175
193
}
176
194
177
195
// @brief Defines the TTS vendor enumeration
You can’t perform that action at this time.
0 commit comments