You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @brief Defines the Voice Activity Detection (VAD) configuration for the agent to join the RTC channel
@@ -268,6 +278,19 @@ type JoinPropertiesReqBody struct {
268
278
// If set to 0, the agent will not stop until manually exited
269
279
IdleTimeout*int`json:"idle_timeout,omitempty"`
270
280
281
+
// Silence timeout (s) (optional)
282
+
//
283
+
// The maximum silence time of the agent (s), range is [0,60].
284
+
//
285
+
// After the agent is created and a user joins the channel, the duration of the agent's non-listening, thinking, or speaking state is called the agent's silence time.
286
+
//
287
+
// When the silence time reaches the set value, the agent will report the silence prompt message in llm.silence_message, and then recalculate the silence time.
288
+
//
289
+
// - 0 (default): Do not enable this feature.
290
+
//
291
+
// - (0,60]: Must also set llm.silence_message to enable the feature.
0 commit comments