42 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
1
answer
55
views
How to initialize and manage DB connections in a Livekit agent?
I basically want to initialize some async DB connections in my Livekit agent. I use Beanie to manage my MongoDB database. Beanie initialization looks something like this (as per the docs):
from beanie ...
1
vote
0
answers
28
views
How to mute sound on desktop without silencing the device?
Livekit mutes the device in Windows when using the mute action.
I tried setting Gain=0, but it didn't work.
I've tried many methods, and I was going to write them all, but since I've tried so many ...
2
votes
0
answers
99
views
Python when sounddevice.PortAudioError: Error opening InputStream: Invalid sample rate [PaErrorCode -9997]
I am currently building a voice AI agent using LiveKit. My current code base is from LiveKit.
from dotenv import load_dotenv
from livekit import agents
from livekit.agents import AgentSession, Agent, ...
0
votes
0
answers
61
views
Xcode Archive fails with SwiftEmitModule error when including SPM dependency in XCFramework SDK
I’m developing an iOS SDK and I want to distribute it as an XCFramework.
My requirements:
The SDK code must be hidden (binary-only).
Some dependencies (e.g., OpenSSL) are manually added as frameworks ...
1
vote
1
answer
112
views
Audio Output Device Getting and Selection
I am working on a video conferencing solutions web app and I am having issues while fetching the audio output devices on mobile browsers.
I am able to get audio output devices on laptop browsers ...
0
votes
1
answer
362
views
voice_assistant From livekit-agents cannot be imported
I already download package livekit-agents and when I want to use, I can't find module voice_assistant. Is there a problem of my livekit-agents?
I already try upgrade my livekit-agents package to ...
0
votes
0
answers
105
views
Flutter app using LiveKit throws media exception on mobile but works fine on web
'm building a mobile app using Flutter and integrating LiveKit for audio/video calls.
On the web platform, everything works perfectly — media connects, video streams, etc.
However, on mobile devices , ...
0
votes
0
answers
79
views
Livekit React how to disable microphone screen?
When I add { source: Track.Source.Microphone, withPlaceholder: false } in useTracks, an additional sound screen appears (John's screen in pic). How to disable it?
@livekit/components-react version : 2....
0
votes
1
answer
414
views
LiveKit Agent Isn't Picking Up Chat Message From Room Participant
I've built a Python Live Kit agent that uses the Open AI real time API so that my users can have a voice conversation with the AI. I also want the user to be able to send a text message to the bot if ...
0
votes
0
answers
552
views
Multi-Agent Workflow using LiveKit: Transfer to agent Fails When `generate_reply()` Is Called Before
I'm working on a voice-based multi-agent workflow using LiveKit for conversational logic. In some scenarios, one agent is expected to generate a spoken response and then transfer control to another ...
3
votes
2
answers
333
views
ReferenceError: LiveKitClient is not defined when loading JS SDK (UMD) on Parrot OS
I'm trying to integrate LiveKit (using LiveKit Cloud) into my web application (Python/Flask/SocketIO backend, plain JavaScript frontend), and I'm stuck on a persistent client-side error I can't seem ...
1
vote
0
answers
384
views
Why is my LiveKit-based multimodal agent speaking twice in the room, even though transcript looks correct?
I'm using LiveKit with a multimodal agent (OpenAI RealtimeModel) to conduct interactive interviews in a virtual room. The goal is to:
Let the agent converse in real-time using audio (modalities=[&...
0
votes
1
answer
2k
views
How to set an end time for a LiveKit room and send a warning message 1 minute before disconnecting using Python?
I'm working with LiveKit and a multimodal agent in Python for a voice-based interview session. I'd like to implement the following:
Automatically disconnect the agent at a specific end time.
Send a &...
0
votes
1
answer
386
views
livekit stream screen share in electron not working
How to share and stream screen with livekit in electron app? I've tried this which works on web
await localParticipant.setScreenShareEnabled(true, {
video: {
displaySurface: &...
0
votes
0
answers
167
views
Flutter LiveKit stream audio error AVAudioSession
I'm implementing LiveKit in a Flutter app, the video is successfully streamed but when added audio I receive error in console. I don't know if this error is the main problem of not receiving/listening ...