We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc041a2 commit 5fa77a4Copy full SHA for 5fa77a4
livekit-agents/livekit/agents/voice/room_io/room_io.py
@@ -68,7 +68,9 @@ class RoomInputOptions:
68
"""If not given, default to False."""
69
audio_sample_rate: int = 24000
70
audio_num_channels: int = 1
71
- noise_cancellation: rtc.NoiseCancellationOptions | None = None
+ noise_cancellation: rtc.NoiseCancellationOptions | rtc.FrameProcessor[rtc.AudioFrame] | None = (
72
+ None
73
+ )
74
text_input_cb: TextInputCallback = _default_text_input_cb
75
participant_kinds: NotGivenOr[list[rtc.ParticipantKind.ValueType]] = NOT_GIVEN
76
"""Participant kinds accepted for auto subscription. If not provided,
0 commit comments