ancient-hospital-67205
08/13/2025, 2:31 PMtall-airline-16756
08/13/2025, 2:31 PMtall-airline-16756
08/13/2025, 2:32 PMlivekit.agents.telemetry
, just run this command:
pip install "livekit-agents[openai,silero,deepgram,cartesia,turn-detector]~=1.0"
This will set up the main LiveKit Agents library along with some handy plugins, including the livekit.agents.telemetry
module. Let me know if you need any help with it!ancient-hospital-67205
08/13/2025, 2:33 PMtall-airline-16756
08/13/2025, 2:33 PMModuleNotFoundError
for livekit.agents.telemetry
pops up because the telemetry
module isn’t included in the main imports of the LiveKit Agents package. No worries though—you can fix this by importing it directly with its full path like this:
from livekit.agents.telemetry import set_tracer_provider
If you’re still running into trouble, double-check that the package is installed properly by running:
pip install "livekit-agents[openai,silero,deepgram,cartesia,turn-detector]~=1.0"
Sources: livekit-agents/livekit/agents/__init__.py