<@U07FRRZH2GN> how can i use krisp for SIP calls
# ask-ai
f
@icy-policeman-64898 how can i use krisp for SIP calls
t
Thanks for reaching out, Abhishek. I'm an AI assistant and I'm here to help. Give me a moment while I research this topic.
LiveKit SIP supports Krisp noise cancellation to enhance call quality by removing background noise in real-time. Here's how you can enable it: • For Incoming Calls: Enable Krisp for inbound trunks using the
krisp_enabled
attribute. • For Outgoing Calls: Enable Krisp noise cancellation using the CreateSIPParticipant API when making a call. This is configured during outbound call creation. Krisp uses AI models to identify and remove background noise, improving speech quality for turn detection, transcriptions, and recordings in AI agent applications. Sources: SIP overview | LiveKit Docs | SIP overview | LiveKit Docs
f
@icy-policeman-64898 do i have to install any dependencies before using krisp?
t
You don't need to install any additional dependencies to use Krisp noise cancellation with LiveKit SIP. The functionality is built into the LiveKit SIP service. Simply enable Krisp by setting the
krisp_enabled
attribute when configuring inbound trunks or during outbound call creation using the
CreateSIPParticipant
API. Sources: SIP overview | LiveKit Docs
f
@icy-policeman-64898 WARNING: config file C:\Users\abhis/.livekit/cli-config.yaml should have permissions 600 could not read request: proto: (line 7:3): unknown field "krisp_enabled" above is the error i get when i enable krisp
t
The error "unknown field 'krisp_enabled'" suggests that there might be a version mismatch between your client and the LiveKit SIP service, or the field is being used in an unsupported context. Please ensure that: • You are using the latest version of the LiveKit CLI or SDK that supports the
krisp_enabled
field. • The
krisp_enabled
field is being used in the correct API call or configuration (e.g.,
CreateSIPParticipant
or
SIPInboundTrunkInfo
). If the issue persists, please verify your configuration file permissions as indicated in the warning message and ensure it is set to 600. Sources: SIP APIs | LiveKit Docs